Merge pull request #2116 from rtfeldman/str_to_num

Str.toNum
This commit is contained in:
Richard Feldman 2021-12-09 09:48:38 -05:00 committed by GitHub
commit 1ce648ac27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 771 additions and 55 deletions

View file

@ -37,6 +37,7 @@ pub fn decode_low_level<'a>(
StrEndsWith => return BuiltinCall(bitcode::STR_ENDS_WITH),
StrSplit => return NotImplemented, // needs Array
StrCountGraphemes => return NotImplemented, // test needs Array
StrToNum => return NotImplemented, // choose builtin based on storage size
StrFromInt => return NotImplemented, // choose builtin based on storage size
StrFromUtf8 => return NotImplemented, // needs Array
StrTrimLeft => return BuiltinCall(bitcode::STR_TRIM_LEFT),