-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Quasi-quoters for numbers of different bases -- -- Quasi-quoters for numeral systems of standard bases: -- --
-- >>> [bin|011|] -- 3 ---- --
-- >>> [bin|1000001001|] -- 521 ---- --
-- >>> [bin|11111111|] :: Word8 -- 255 ---- --
-- >>> [bin|11111111|] :: Int8 -- -1 --bin :: QuasiQuoter -- | An octal number quasi-quoter. -- --
-- >>> [oct|7634|] -- 3996 --oct :: QuasiQuoter -- | A hexadecimal number quasi-quoter. -- --
-- >>> [hex|a23f|] -- 41535 --hex :: QuasiQuoter