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

NAME

Hydrogen::Curry::Counter - easily curry functions from Hydrogen::Counter

VERSION

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

FUNCTIONS

Each function expects an integer as its only argument and returns a coderef.

curry_dec( $counter )

Curry the first argument of Hydrogen::Counter::dec.

curry_inc( $counter )

Curry the first argument of Hydrogen::Counter::inc.

curry_reset( $counter )

Curry the first argument of Hydrogen::Counter::reset.

curry_set( $counter )

Curry the first argument of Hydrogen::Counter::set.

EXPORT

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

    use Hydrogen::Curry::Counter -all;

To import a particular function, use:

    use Hydrogen::Curry::Counter 'curry_reset';

To rename functions:

    use Hydrogen::Curry::Counter 'curry_reset' => { -as => 'myfunc' };

On Perl 5.37.2+, you can import lexically:

    use Hydrogen::Curry::Counter -lexical, 'curry_reset';

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::Counter, Hydrogen::Topic::Counter, Sub::HandlesVia::HandlerLibrary::Counter.

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.