signatures(3pm)


NAME

   signatures - Subroutine signatures with no source filter

VERSION

   version 0.13

SYNOPSIS

       use signatures;

       sub foo ($bar, $baz) {
           return $bar + $baz;
       }

DESCRIPTION

   With this module, we can specify subroutine signatures and have
   variables automatically defined within the subroutine.

   For example, you can write

       sub square ($num) {
           return $num * $num;
       }

   and it will be automatically turned into the following at compile time:

       sub square {
           my ($num) = @_;
           return $num * $num;
       }

   Note that, although the syntax is very similar, the signatures provided
   by this module are not to be confused with the prototypes described in
   perlsub. All this module does is extracting items of @_ and assigning
   them to the variables in the parameter list. No argument validation is
   done at runtime.

   The signature definition needs to be on a single line only.

   If you want to combine sub signatures with regular prototypes a "proto"
   attribute exists:

       sub foo ($bar, $baz) : proto($$) { ... }

METHODS

   If you want subroutine signatures doing something that this module
   doesn't provide, like argument validation, typechecking and similar,
   you can subclass it and override the following methods.

   proto_unwrap ($prototype)
   Turns the extracted $prototype into code.

   The default implementation returns "my (${prototype}) = @_;" or an
   empty string, if no prototype is given.

   inject ($offset, $code)
   Inserts a $code string into the line perl currently parses at the given
   $offset. This is only called by the "callback" method.

   callback ($offset, $prototype)
   This gets called as soon as a sub definition with a prototype is
   encountered. Arguments are the $offset within the current line perl is
   parsing and extracted $prototype.

   The default implementation calls "proto_unwrap" with the prototype and
   passes the returned value and the offset to "inject".

BUGS

   prototypes aren't checked for validity yet
       You won't get a warning for invalid prototypes using the "proto"
       attribute, like you normally would with warnings enabled.

   you shouldn't alter $SIG{__WARN__} at compile time
       After this module is loaded you shouldn't make any changes to
       $SIG{__WARN__} during compile time. Changing it before the module
       is loaded or at runtime is fine.

SEE ALSO

   Method::Signatures

   MooseX::Method::Signatures

   Sub::Signatures

   Attribute::Signature

   Perl6::Subs

   Perl6::Parameters

THANKS

   Moritz Lenz and Steffen Schwigon for documentation review and
   improvement.

AUTHOR

   Florian Ragwitz <rafl@debian.org>

CONTRIBUTORS

   *   Karen Etheridge <ether@cpan.org>

   *   Peter Martini <PeterCMartini@GMail.com>

   *   Alexandr Ciornii <alexchorny@gmail.com>

   *   Father Chrysostomos <sprout@cpan.org>

   *   Alex Kapranoff <alex@kapranoff.ru>

   *   Steffen Schwigon <ss5@renormalist.net>

COPYRIGHT AND LICENSE

   This software is copyright (c) 2008 by Florian Ragwitz.

   This is free software; you can redistribute it and/or modify it under
   the same terms as the Perl 5 programming language system itself.





Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.