| Games-Solitaire-Verify documentation | view source | Contained in the Games-Solitaire-Verify distribution. |
Games::Solitaire::Verify::Card - a class wrapper for an individual Solitaire card.
Version 0.0101
use Games::Solitaire::Verify::Card;
# Initialise a Queen-of-Hearts
my $queen_of_hearts = Games::Solitaire::Verify::Card->new(
{
string => "QH",
},
);
Returns the expected sequence of the suits - "H", "S", "C", "D".
Calculates the numerical rank of the string passed as argument.
Example:
my $ten = Games::Solitaire::Verify::Card->calc_rank("T")
# Prints 10.
print "$ten\n";
Same as calc_rank only supporting "0" as the zero'th card.
Returns the rank of the card as an integer. Ace is 1, 2-10 are 2-20; J is 11, Q is 12 and K is 13.
Returns "H", "C", "D" or "S" depending on the suit.
Returns "red" or "black" depending on the rank of the card.
Clones the card into a new copy.
Converts the card to a string representation.
Converts the rank to a string.
Shlomi Fish, <shlomif at iglu.org.il>
Please report any bugs or feature requests to bug-games-solitaire-verifysolution-move at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Games-Solitaire-Verify. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Games::Solitaire::Verify::Card
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Games-Solitaire-Verify
Copyright 2008 Shlomi Fish.
This program is released under the following license: MIT/X11 ( http://www.opensource.org/licenses/mit-license.php ).
| Games-Solitaire-Verify documentation | view source | Contained in the Games-Solitaire-Verify distribution. |