NAME

Data::Object::Role::Alphabetic - Alphabetic Object Role for Perl 5

VERSION

version 0.50

SYNOPSIS

use Data::Object::Role::Alphabetic;

DESCRIPTION

Data::Object::Role::Alphabetic provides routines for operating on Perl 5 alpha-numeric data.

METHODS

eq

# given $alphabetic

$alphabetic->eq; # (...)

The eq method returns true if the argument provided is equal to the value represented by the object. This method returns a number object.

ge

# given $alphabetic

$alphabetic->ge; # (...)

The ge method returns true if the argument provided is greater-than or equal-to the value represented by the object. This method returns a Data::Object::Number object.

gt

# given $alphabetic

$alphabetic->gt; # (...)

The gt method returns true if the argument provided is greater-than the value represented by the object. This method returns a number object.

le

# given $alphabetic

$alphabetic->le; # (...)

The le method returns true if the argument provided is less-than or equal-to the value represented by the object. This method returns a Data::Object::Number object.

lt

# given $alphabetic

$alphabetic->lt; # (...)

The lt method returns true if the argument provided is less-than the value represented by the object. This method returns a number object.

ne

# given $alphabetic

$alphabetic->ne; # (...)

The ne method returns true if the argument provided is not equal to the value represented by the object. This method returns a number object.

SEE ALSO

AUTHOR

Al Newkirk <anewkirk@ana.io>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Al Newkirk.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.