This is a simple library implemented in Rust that models a deck of cards.
You can use the module in the standard way by adding this to your Cargo.toml. Unless you have a reason not to, you should use the latest released version.
[dependencies]
deckofcards = "*"
Once you've added a dependency you can get class documentation like so:
cargo doc
The Deck class contains zero or more Cards which are held in dealt or undealt piles. You can shuffle() the deck. You can dealone() card or dealmany(). You can reset() to return dealt cards to the undealt pile.
By default if you don't shuffle, your deck will be sorted.
You can deal cards out to a Vec
See sample/ folder for a simple sample that creates a deck, shuffles it and deals out some cards from the deck.