You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libscript/src/item.mlc
+8-7Lines changed: 8 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7,45 +7,46 @@ foreign handler StoreItemRangeOf(in Value as string, in Start as index, in Finis
7
7
8
8
foreign handler EvalNumberOfItemsIn(in Target as string, out Count as index) as undefined binds to "<builtin>"
9
9
10
-
foreign handler EvalIsAmongTheItemsOf(in Needle as string, in Target as string, in IsNot as bool, out Result as bool) as undefined binds to "<builtin>"
10
+
foreign handler EvalIsAmongTheItemsOf(in Needle as string, in Target as string, out Result as bool) as undefined binds to "<builtin>"
11
+
foreign handler EvalIsNotAmongTheItemsOf(in Needle as string, in Target as string, out Result as bool) as undefined binds to "<builtin>"
11
12
12
13
foreign handler EvalOffsetOfItemIn(in Needle as string, in Target as string, out Offset as index) as undefined binds to "<builtin>"
13
14
14
15
--
15
16
16
-
syntax SingletonItemOf is left unary operator with precedence 1
17
+
syntax SingletonItemOf is prefix operator with precedence 1
0 commit comments