initial commit of Str.trimLeft

This commit is contained in:
Michael Downey 2021-11-09 14:25:24 -05:00
parent 35df58c18f
commit 1bc278d962
13 changed files with 159 additions and 7 deletions

View file

@ -18,6 +18,7 @@ pub enum LowLevel {
StrRepeat,
StrFromFloat,
StrTrim,
StrTrimLeft,
ListLen,
ListGetUnsafe,
ListSet,
@ -128,6 +129,7 @@ macro_rules! first_order {
| StrToUtf8
| StrRepeat
| StrTrim
| StrTrimLeft
| StrFromFloat
| ListLen
| ListGetUnsafe