NAME

Class::NonOO - Use methods as functions with an implicit singleton

VERSION

v0.2.0

SYNOPSYS

In a module:

package MyModule;

use Class::NonOO;

...

sub my_method {
   my ($self, @args) = @_;
   ...
}

as_function
  export => [ 'my_method' ], # methods to export
  args   => [ ];             # constructor args

The module can be be used with a function calling style:

use MyModule;

...

my_method(@args);

INSTALLATION

See How to install CPAN modules.

Required Modules

This distribution requires Perl v5.9.3.

This distribution requires the following modules:

This distribution recommends the following modules:

RECENT CHANGES

Bug Fixes

  • Fixed bad code in the tests.

Incompatible Changes

  • Renamed module to Class::NonOO, since it does not actually require Moo.

See the Changes file for a longer revision history.

DESCRIPTION

This module allows you to turn a class into a module that exports methods as functions that use an implicit singleton.

EXPORTS

as_function

as_function
  exports => \@methods,
  args    => \@args;

This wraps methods in a function that checks the first argument. If the argument is an instance of the class, then it assumes it is a normal method call. Otherwise it assumes it is a function call, and it calls the method with the singleton instance.

Note that this will not work properly on methods that take an instance of the class as the first argument.

AUTHOR

Robert Rothenberg, <rrwo at cpan.org>

LICENSE AND COPYRIGHT

Copyright 2015 Robert Rothenberg.

This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:

http://www.perlfoundation.org/artistic_license_2_0