Maintainer | hapytexeu+gh@gmail.com |
---|---|
Stability | experimental |
Portability | POSIX |
Safe Haskell | Safe |
Language | Haskell2010 |
Unicode has a block named Miscellaneous Symbols that includes unicode characters for dice, this module aims to make it more convenient to render die characters.
Represent die values
A data type to store the values of a die.
I | A die with value one, represented with ⚀. |
II | A die with value two, represented with ⚁. |
III | A die with value three, represented with ⚂. |
IV | A die with value four, represented with ⚃. |
V | A die with value five, represented with ⚄. |
VI | A die with value six, represented with ⚅. |
Instances
Bounded DieValue Source # | |
Enum DieValue Source # | |
Eq DieValue Source # | |
Ord DieValue Source # | |
Defined in Data.Char.Dice | |
Read DieValue Source # | |
Show DieValue Source # | |
Arbitrary DieValue Source # | |