Data.Digits
Documentation
Arguments
| :: Integral n | |
| => n | The base to use (typically 10). |
| -> n | The number to convert to digit form. |
| -> [n] | The digits of the number in list form. |
Returns the digits of a positive integer as a list.
Arguments
| :: Integral n | |
| => n | The base to use. |
| -> n | The number to convert to digit form. |
| -> [n] | The digits of the number in list form, in reverse. |
Returns the digits of a positive integer as a list, in reverse order. This is slightly more efficient than in forward order.
Arguments
| :: Integral n | |
| => n | The base to use. |
| -> [n] | The digits of the number in list form. |
| -> n | The original number. |
Takes a list of digits, and converts them back into a positive integer.
unDigits . digits should be the identity, in any base.