• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H18-Mar-2014-582458

ChangesH A D18-Mar-20143.1 KiB12771

MANIFESTH A D18-Mar-2014242 1110

META.jsonH A D18-Mar-20141.2 KiB5251

META.ymlH A D18-Mar-2014680 3029

Makefile.PLH A D18-Mar-20142.1 KiB5547

READMEH A D18-Mar-20141.1 KiB2720

Switch.pmH A D03-May-202228.2 KiB891444

README

1==============================================================================
2                      Release of version 2.17 of Switch
3==============================================================================
4
5
6NAME
7    Switch - A switch statement for Perl, do not use if you can use given/when
8
9DESCRIPTION
10
11    Switch.pm provides the syntax and semantics for an explicit case
12    mechanism for Perl. The syntax is minimal, introducing only the
13    keywords C<switch> and C<case> and conforming to the general pattern
14    of existing Perl control structures. The semantics are particularly
15    rich, allowing any one (or more) of nearly 30 forms of matching to
16    be used when comparing a switch value with its various cases.
17
18AUTHOR
19    Damian Conway (damian@conway.org)
20    Maintained by Alexandr Ciornii (alexchorny@gmail.com)
21    Previously was maintained by Rafael Garcia-Suarez and perl5 porters.
22
23COPYRIGHT
24    Copyright (c) 1997-2008, Damian Conway. All Rights Reserved.
25    This module is free software. It may be used, redistributed
26        and/or modified under the same terms as Perl itself.
27