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

NAME

Games::Solitaire::Verify::Column - a class wrapper for Solitaire columns that are composed of a sequence of cards.

VERSION

Version 0.0101

SYNOPSIS

    use Games::Solitaire::Verify::Column;

    # Initialise a column
    my $column = Games::Solitaire::Verify::Column->new(
        {
            string => ": KH QS 5C",
        },
    );

    # Prints 3
    print $column->len();

    my $queen_card = $column->pos(1);

FUNCTIONS

$column->len()

Returns an integer representing the number of cards in the column.

$column->pos($idx)

Returns the card (a Games::Solitaire::Verify::Card object) at position $idx in Column. $idx starts at 0.

$column->top()

Returns the top card.

$column->clone()

Returns a clone of the column.

$base_column->append($column_with_more_cards)

Appends the column $column_with_more_cards to $base_column .

$column->push($card)

Appends a single card to the top of the column.

my $card_at_top = $column->pop()

Pops a card from the top of the column and returns it.

$column->to_string()

Converts to a string.

AUTHOR

Shlomi Fish, <shlomif at iglu.org.il>

BUGS

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.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Games::Solitaire::Verify::Column

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2008 Shlomi Fish.

This program is released under the following license: MIT/X11 ( http://www.opensource.org/licenses/mit-license.php ).