Expand description
§Crate for implementation of objects commonly used in card games.
Implements the Card-enum which has two possible values: A standard card with a Rank and a Suit or a joker card with a Color.
This is in turn used to implement the deck-struct. Functionality for more deck-types is a work in progress, but currently supports Standard, Piquet and Jass decks
Re-exports§
pub use self::card::Card;pub use self::card::color::Color;pub use self::card::rank::Rank;pub use self::card::suit::Suit;pub use self::deck::Deck;