pub type Cascade = Vec<Card>;Expand description
A stack of arbitrary cards.
§Rules
Adding cards: A card can be put on a cascade iff its rank is 1 lower than that of the top card of the cascade and it has a different colour than the top card of the cascade.
Removing cards: Only the top card of the cascade can be removed.
§Examples
TODO [high priority] Add examples
Aliased Type§
pub struct Cascade { /* private fields */ }