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
{{ message }}
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: libscript/src/codeunit.lcb
+1-24Lines changed: 1 addition & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -29,8 +29,6 @@ public foreign handler MCCodeunitStoreCodeunitRangeOf(in Value as String, in Sta
29
29
30
30
public foreign handler MCCodeunitEvalNumberOfCodeunitsIn(in Target as String, out Count as LCUIndex) returns nothing binds to "<builtin>"
31
31
32
-
public foreign handler MCCodeunitEvalIsAmongTheCodeunitsOf(in Needle as String, in Target as String, out Value as CBool) returns nothing binds to "<builtin>"
33
-
34
32
public foreign handler MCCodeunitStoreBeforeCodeunitOf(in Value as String, in Index as LCIndex, inout Target as String) returns nothing binds to "<builtin>"
35
33
public foreign handler MCCodeunitStoreAfterCodeunitOf(in Value as String, in Index as LCIndex, inout Target as String) returns nothing binds to "<builtin>"
36
34
@@ -42,7 +40,7 @@ public foreign handler MCCodeunitEvalContains(in Source as String, in Needle as
42
40
public foreign handler MCCodeunitEvalBeginsWith(in Source as String, in Prefix as String, out Result as CBool) returns nothing binds to "<builtin>"
43
41
public foreign handler MCCodeunitEvalEndsWith(in Source as String, in Suffix as String, out Result as CBool) returns nothing binds to "<builtin>"
44
42
45
-
public foreign handler MCCodeunitRepeatForEachCodeunit(inout Iterator as optional Pointer, inout Iterand as String, in Container as String) returns CBool binds to "<builtin>"
43
+
public foreign handler MCCodeunitRepeatForEachCodeunit(inout Iterator as optional Pointer, inout Iterand as optional String, in Container as String) returns CBool binds to "<builtin>"
46
44
47
45
public foreign handler MCCodeunitFetchFirstCodeunitOf(in Target as String, out Value as String) returns nothing binds to "<builtin>"
48
46
public foreign handler MCCodeunitStoreFirstCodeunitOf(in Value as String, inout Target as String) returns nothing binds to "<builtin>"
@@ -294,27 +292,6 @@ end syntax
294
292
295
293
--
296
294
297
-
/**
298
-
Summary: Determines whether <Needle> is in <Target>.
299
-
Needle: An expression which evaluates to a codeunit.
300
-
Target: An expression which evaluates to a string.
301
-
302
-
Returns: True if <Needle> is among the codeunits of <Target>, and false otherwise.
303
-
304
-
Description:
305
-
>*Note:* It is an error if <Needle> evaluates to a string consisting of more than one codeunit.
306
-
307
-
Tags: Strings
308
-
*/
309
-
310
-
syntax CodeunitIsInString is neutral binary operator with comparison precedence
0 commit comments