This commit is contained in:
Smaug123
2023-12-05 20:05:32 +00:00
parent b063bce19a
commit 785dce4d2b
5 changed files with 180 additions and 9 deletions

View File

@@ -95,3 +95,9 @@ module StringSplitEnumerator =
failwith "expected an int, got nothing"
Int32.Parse e.Current
let consumeU64 (e : byref<StringSplitEnumerator>) : uint64 =
if not (e.MoveNext ()) then
failwith "expected an int, got nothing"
UInt64.Parse e.Current