decimaldigit : Bits8 -> Integer- Totality: total
Visibility: export hexdigit : Bits8 -> Integer- Totality: total
Visibility: export binaryBV : ByteVect n -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export binarySepBV : ByteVect n -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export octalBV : ByteVect n -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export octalSepBV : ByteVect n -> Bits8 -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export decimalBV : ByteVect n -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export decimalSepBV : ByteVect n -> Bits8 -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export hexadecimalBV : ByteVect n -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export hexadecimalSepBV : ByteVect n -> Bits8 -> Integer -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export integerBV : ByteVect n -> (k : Nat) -> Ix k n => Integer- Totality: total
Visibility: export binary : ByteString -> Integer Converts a string of binary digits to an integer
Totality: total
Visibility: exportbinarySep : ByteString -> Integer Converts a string of binary digits containing optional
separators to an integer `0010_0011_1110_0011.
Such integer literals are supported by Idris as well as TOML,
for instance:
Totality: total
Visibility: exportoctal : ByteString -> Integer Converts a string of octal digits to an integer
Totality: total
Visibility: exportoctalSep : Bits8 -> ByteString -> Integer Converts a string of octal digits containing optional
separators to an integer `077_334`.
Such integer literals are supported by Idris as well as TOML,
for instance:
Totality: total
Visibility: exportdecimal : ByteString -> Integer Converts a string of decimal digits to an integer
Totality: total
Visibility: exportdecimalSep : Bits8 -> ByteString -> Integer Converts a string of decimal digits containing optional
separators to an integer `177_934`.
Such integer literals are supported by Idris as well as TOML,
for instance:
Totality: total
Visibility: exporthexadecimal : ByteString -> Integer Converts a string of decimal digits to an integer
Totality: total
Visibility: exporthexadecimalSep : Bits8 -> ByteString -> Integer Converts a string of decimal digits containing optional
separators to an integer `177_934`.
Such integer literals are supported by Idris as well as TOML,
for instance:
Totality: total
Visibility: exportinteger : ByteString -> Integer Converts an integer literal with optional sign prefix
to an integer.
Totality: total
Visibility: exportmergeL : Ord o => (o -> e -> e -> e) -> SnocList (e, o) -> e -> e Utility for combining a snoc-list of expressions combined
via left-binding operators of different fixity into a single
expression.
Totality: total
Visibility: exportmaybeList : SnocList a -> Maybe (List a) Utility for converting a snoc list into a list.
This is useful when streaming chunks of data and emitting
all the accumulated values of a single chunk.
Totality: total
Visibility: exportsnocPack : SnocList String -> String Concatenates the strings accumulated in a snoc list.
This is a utility often used when lexing or parsing
string literals that support various kinds of escape
sequences.
Totality: total
Visibility: export