definition: |
readOct :: ReadS Int readOct l = maybeToList $ readNumPrefix (dropWhile isSpace l) Nothing 8 isOctDigit digitToInt |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Read an octal number as a first token in a string. --- The string might contain leadings blanks and the number is read --- up to the first non-octal digit. --- On success returns `[(v,s)]`, where `v` is the value of the number --- and s is the remaing string without the number token. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
readOct |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> [(Prelude.Int, String)] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |