Interpret the string as the decimal representation of a natural number.
Panics if the string is not a string of digits.
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[extern lean_string_validate_utf8]
Returns true if the given byte array consists of valid UTF-8.
Instances For
@[irreducible]
Equations
Instances For
@[irreducible]
Equations
Instances For
@[inline]
Converts a UTF-8 encoded ByteArray
string to String
,
or panics if a
is not properly UTF-8 encoded.
Equations
- String.fromUTF8! a = if h : String.validateUTF8 a = true then String.fromUTF8 a h else panicWithPosWithDecl "Init.Data.String.Extra" "String.fromUTF8!" 100 47 "invalid UTF-8 string"
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[extern lean_string_to_utf8]
Converts the given String
to a UTF-8 encoded byte array.
Equations
- a.toUTF8 = { data := { toList := List.flatMap String.utf8EncodeChar a.data } }
Instances For
@[extern lean_string_get_byte_fast]
Accesses a byte in the UTF-8 encoding of the String
. O(1)
Instances For
@[irreducible, specialize #[]]
Advance the given iterator until the predicate returns true or the end of the string is reached.
Equations
Instances For
@[irreducible, specialize #[]]
Equations
Instances For
Replaces each \r\n
with \n
to normalize line endings,
but does not validate that there are no isolated \r
characters.
It is an optimized version of String.replace text "\r\n" "\n"
.
Equations
Instances For
@[irreducible]
Equations
- One or more equations did not get rendered due to their size.