NAME
Kavorka::Manual::Functions - fun keyword
DESCRIPTION
Kavorka provides the fun
keyword for the purpose of defining functions (as against methods, etc).
The anatomy of a function:
The keyword introducing the function.
The function name (optional).
The signature (optional).
The prototype (optional).
The attribute list (optional).
The function body.
Example:
# (1) (2) (3) (4) (5) (6)
fun foobar ($foo, $bar) :($$) :cached { return $foo + $bar }
# (1) (6)
my $f = fun { return $_[0] + $_[1] };
The Keyword
This requires very little explanation. If you're no fun, and don't like the name fun
, you can export it with a different name:
use Kavorka fun => { -as => 'function' };
The Function Name
If present, it specifies the name of the function being defined. If no name is present, the declaration is an expression that evaluates to a reference to the function in question.
Functions are automatically forward-declared; a la
sub foobar ($$);
but are installed into the symbol table at run-time. So this works:
if ($ENV{DEBUG}) {
fun foobar { ... }
}
else {
fun foobar { ... }
}
It is possible to define lexical functions using a dollar-prefixed function name:
fun $add ($x, $y) {
$x + $y;
}
The Signature
See Kavorka::Manual::Signature.
The Prototype
See Kavorka::Manual::PrototypeAndAttributes.
The Attributes
See Kavorka::Manual::PrototypeAndAttributes.
The Function Body
This is more or less what you'd expect from the function body you'd write with sub, however the lexical variables for parameters are pre-declared and pre-populated.
BUGS
Please report any bugs to http://rt.cpan.org/Dist/Display.html?Queue=Kavorka.
SEE ALSO
Kavorka::Manual, Kavorka::Manual::Signature, Kavorka::Manual::PrototypeAndAttributes, Kavorka::Manual::MultiSubs.
AUTHOR
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT AND LICENCE
This software is copyright (c) 2013 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.