-
-
09 Oct 2015 02:16:27 UTC
- Distribution: MooseX-Role-WithOverloading
- Module version: 0.17
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (2)
- Testers (9956 / 7 / 1)
- Kwalitee
Bus factor: 3- 79.69% Coverage
- License: perl_5
- Perl: v5.6.0
- Activity
24 month- Tools
- Download (31.55KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
Deprecated.
The maintainer of this distribution has indicated that it is deprecated and no longer suitable for use.- NAME
- VERSION
- SYNOPSIS
- DESCRIPTION
- DEPRECATION NOTICE
- SUPPORT
- AUTHORS
- CONTRIBUTORS
- COPYRIGHT AND LICENCE
NAME
MooseX::Role::WithOverloading - (DEPRECATED) Roles which support overloading
VERSION
version 0.17
SYNOPSIS
package MyRole; use MooseX::Role::WithOverloading; use overload q{""} => 'as_string', fallback => 1; has message => ( is => 'rw', isa => 'Str', ); sub as_string { shift->message } package MyClass; use Moose; use namespace::autoclean; with 'MyRole'; package main; my $i = MyClass->new( message => 'foobar' ); print $i; # Prints 'foobar'
DESCRIPTION
MooseX::Role::WithOverloading allows you to write a Moose::Role which defines overloaded operators and allows those overload methods to be composed into the classes/roles/instances it's compiled to, where plain Moose::Roles would lose the overloading.
Starting with Moose version 2.1300, this module is no longer necessary, as the functionality is available already. In that case,
use MooseX::Role::WithOverloading
behaves identically touse Moose::Role
.DEPRECATION NOTICE
This module is marked as deprecated, as starting with Moose version 2.1300, the functionality provided here is now built-in to Moose. You only need to use this module if you are using an older Moose (but please upgrade!).
SUPPORT
Bugs may be submitted through the RT bug tracker (or bug-MooseX-Role-WithOverloading@rt.cpan.org).
There is also a mailing list available for users of this distribution, at http://lists.perl.org/list/moose.html.
There is also an irc channel available for users of this distribution, at irc://irc.perl.org/#moose.
AUTHORS
Florian Ragwitz <rafl@debian.org>
Tomas Doran <bobtfish@bobtfish.net>
CONTRIBUTORS
Karen Etheridge <ether@cpan.org>
Dave Rolsky <autarch@urth.org>
Jesse Luehrs <doy@tozt.net>
Tomas Doran (t0m) <t0m@state51.co.uk>
COPYRIGHT AND LICENCE
This software is copyright (c) 2009 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.
Module Install Instructions
To install MooseX::Role::WithOverloading, copy and paste the appropriate command in to your terminal.
cpanm MooseX::Role::WithOverloading
perl -MCPAN -e shell install MooseX::Role::WithOverloading
For more information on module installation, please visit the detailed CPAN module installation guide.