HCard-0.0: A library for implementing a Deck of Cards

Data.HCard.Instances

Description

Author : Joe Fredette License : BSD3 Copyright : Joe Fredette

Maintainer : Joe Fredette jfredett.at.gmail.dot.com Stability : Unstable Portability : portable

Synopsis

Documentation

data Suit Source

The Suits of the so-called French deck, the most common American deck of cards.

Constructors

H 
D 
C 
S 

data Index Source

The Indices of the french deck

Constructors

Ace 
Jack 
Queen 
King 
V Int 

type Classic = CardT Suit IndexSource

Type synonyms to make using the polymorphic bits easier

deal :: Int -> Int -> ClassicDeckST [ClassicHand]Source

Wrapper which forces the polymorphic dealHands to work with French-deck cards only.