Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type family
ShowNatBase (base :: Natural) (showDigit :: Natural ~> Char) (n :: Natural) :: Symboltype-level-show TypeLevelShow.Natural Render a type-level Natural in the given base using the given digit renderer. The digit renderer is guaranteed to be called with 0 <= n < base.
-
type-level-show TypeLevelShow.Natural No documentation available.
type
ShowNatBin (n :: Natural) = ShowNatBase 2 ShowNatDigitHexLowerSym ntype-level-show TypeLevelShow.Natural No documentation available.
type
ShowNatDec (n :: Natural) = ShowNatBase 10 ShowNatDigitHexLowerSym ntype-level-show TypeLevelShow.Natural No documentation available.
type
ShowNatHexLower (n :: Natural) = ShowNatBase 16 ShowNatDigitHexLowerSym ntype-level-show TypeLevelShow.Natural No documentation available.
type
ShowNatHexUpper (n :: Natural) = ShowNatBase 16 ShowNatDigitHexUpperSym ntype-level-show TypeLevelShow.Natural No documentation available.
type
ShowNatOct (n :: Natural) = ShowNatBase 8 ShowNatDigitHexLowerSym ntype-level-show TypeLevelShow.Natural No documentation available.
type family
ShowNatDigitHexLower (d :: Natural) :: Chartype-level-show TypeLevelShow.Natural.Digit Return the associated lower-case Char for a Natural hexadecimal digit. Unsafe. Must be called with 0-15.
data
ShowNatDigitHexLowerSym (d :: FunKind Natural Char)type-level-show TypeLevelShow.Natural.Digit No documentation available.
type family
ShowNatDigitHexUpper (d :: Natural) :: Chartype-level-show TypeLevelShow.Natural.Digit Return the associated upper-case Char for a Natural hexadecimal digit. Unsafe. Must be called with 0-15.