Module
Data.Long
- Package
- purescript-longs
- Repository
- zapph/purescript-longs
#fromLowHighBits Source
fromLowHighBits :: Int -> Int -> Long
Creates a signed Long
from low and high bits respresented as Int
#fromString Source
fromString :: String -> Maybe Long
Reads an Int from a String value. The number must parse as an integer and fall within the valid range of values for the Int type, otherwise Nothing is returned.
#fromStringAs Source
fromStringAs :: Radix -> String -> Maybe Long
Like fromString, but the integer can be specified in a different base.
#toStringAs Source
toStringAs :: Radix -> Long -> String
Like toStringAs
, but the integer can be specified in a different base.