The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Hydrogen::Code - a standard library for code blocks

VERSION

This documentation is for Hydrogen::Code 0.016, which is based on Sub::HandlesVia::HandlerLibrary::Code 0.037.

FUNCTIONS

Each function expects a code block as its first argument.

The functions use prototypes, so you don't have to pass a reference.

execute { CODE } @args

Calls the coderef, passing it any arguments.

execute_list { CODE } @args

Calls the coderef, passing it any arguments, and forcing list context. If called in scalar context, returns an arrayref.

execute_scalar { CODE } @args

Calls the coderef, passing it any arguments, and forcing scalar context.

execute_void { CODE } @args

Calls the coderef, passing it any arguments, and forcing void context. Returns undef.

EXPORT

No functions are exported by this module by default. To import them all (this is usually a bad idea), use:

    use Hydrogen::Code -all;

To import a particular function, use:

    use Hydrogen::Code 'execute_scalar';

To rename functions:

    use Hydrogen::Code 'execute_scalar' => { -as => 'myfunc' };

On Perl 5.37.2+, you can import lexically:

    use Hydrogen::Code -lexical, 'execute_scalar';

See Exporter::Tiny::Manual::Importing for more hints on importing.

BUGS

Please report any bugs to http://github.com/tobyink/p5-hydrogen/issues.

SEE ALSO

Hydrogen, Hydrogen::Curry::CodeRef, Hydrogen::Topic::CodeRef, Sub::HandlesVia::HandlerLibrary::Code, Sub::Util.

AUTHOR

Toby Inkster <tobyink@cpan.org>.

COPYRIGHT AND LICENCE

This software is copyright (c) 2022 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.