forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.lcb
More file actions
283 lines (209 loc) · 8.87 KB
/
type.lcb
File metadata and controls
283 lines (209 loc) · 8.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/* Copyright (C) 2003-2015 LiveCode Ltd.
This file is part of LiveCode.
LiveCode is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License v3 as published by the Free
Software Foundation.
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
/*
This library consists of the general operations on types provided by the standard library of LiveCode Builder.
*/
module com.livecode.type
use com.livecode.foreign
public foreign handler MCTypeEvalIsEmpty(in Target as any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsNotEmpty(in Target as any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsDefined(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsNotDefined(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsABoolean(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsANumber(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsAString(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsAData(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsAnArray(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCTypeEvalIsAList(in Target as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCNothingEvalIsEqualToNothing(in Left as optional any, in Right as nothing, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCNothingEvalIsNothingEqualTo(in Left as nothing, in Right as optional any, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCNothingEvalIsNotEqualToNothing(in Left as optional any, in Right as nothing, out Value as CBool) returns nothing binds to "<builtin>"
public foreign handler MCNothingEvalIsNothingNotEqualTo(in Left as nothing, in Right as optional any, out Value as CBool) returns nothing binds to "<builtin>"
/*
Summary: Determines whether <Target> is empty or not.
Target: Any expression
output: Returns true if the given expression <Target> evaluates to the empty value of that type, and false otherwise.
*/
syntax IsEmpty is postfix operator with comparison precedence
<Target: Expression> "is" "empty"
begin
MCTypeEvalIsEmpty(Target, output)
end syntax
/*
Summary: Determines whether <Target> is empty or not.
Target: Any expression
output: Returns false if the given expression <Target> evaluates to the empty value of that type, and true otherwise.
*/
syntax IsNotEmpty is postfix operator with comparison precedence
<Target: Expression> "is not" "empty"
begin
MCTypeEvalIsNotEmpty(Target, output)
end syntax
--
/*
Summary: Determines whether <Target> is defined or not.
Target: Any expression
output: Returns true if the given expression <Target> is defined, and false if not.
Description:
>*Note:* The <IsDefined> operator is deprecated. Please use <IsNotNothing|is not nothing> instead.
References: IsNotNothing (operator)
*/
syntax IsDefined is postfix operator with comparison precedence
deprecate with message "Use 'is not nothing' instead"
<Target: Expression> "is" "defined"
begin
MCTypeEvalIsDefined(Target, output)
end syntax
/*
Summary: Determines whether <Target> is defined or not.
Target: Any expression
output: Returns false if the given expression <Target> is defined, and true if not.
Description:
>*Note:* The <IsNotDefined> operator is deprecated. Please use <IsNothing|is nothing> instead.
References: IsNothing (operator)
*/
syntax IsNotDefined is postfix operator with comparison precedence
deprecate with message "Use 'is nothing' instead"
<Target: Expression> "is not" "defined"
begin
MCTypeEvalIsNotDefined(Target, output)
end syntax
/*
Summary: Determines whether <Target> is defined or not.
Target: Any expression
Output: Returns false if the given expression <Target> is defined, and true otherwise
Description:
>*Note:* The <IsUndefined> operator is deprecated. Please use <IsNothing|is nothing> instead.
References: IsNothing (operator)
*/
syntax IsUndefined is postfix operator with comparison precedence
deprecate with message "Use 'is nothing' instead"
<Target: Expression> "is undefined"
begin
MCTypeEvalIsNotDefined(Target, output)
end syntax
/*
Summary: Determines whether <Target> is defined or not.
Target: Any expression
Output: Returns true if the given expression <Target> is defined, and false otherwise.
Description:
>*Note:* The <IsNotUndefined> operator is deprecated. Please use <IsNotNothing|is not nothing> instead.
References: IsNotNothing (operator)
*/
syntax IsNotUndefined is postfix operator with comparison precedence
deprecate with message "Use 'is not nothing' instead"
<Target: Expression> "is not undefined"
begin
MCTypeEvalIsDefined(Target, output)
end syntax
--
/*
Name: IsNothing
Type: operator
Syntax: <Target> is nothing
Summary: Determines whether <Target> is nothing or not.
Target: Any expression
output: Returns true if the given expression <Target> is nothing, and false otherwise.
Description:
Use the <IsNothing> operator to test if operators or handlers have returned anything.
*/
syntax NothingIsNothing is neutral binary operator with comparison precedence
<Left: Expression> "is" <Right: Expression>
begin
MCNothingEvalIsEqualToNothing(Left, Right, output)
MCNothingEvalIsNothingEqualTo(Left, Right, output)
end syntax
/*
Name: IsNotNothing
Type: operator
Syntax: <Target> is not nothing
Summary: Determines whether <Target> is nothing or not.
Target: Any expression
output: Returns false if the given expression <Target> is nothing, and true otherwise.
Example:
public handler CanBeNumber(in pString as String) returns Boolean
variable tNum as optional Number
put pString parsed as number into tNum
return tNum is not nothing
end handler
Description:
Use the <IsNotNothing> operator to test if operators or handlers have returned anything.
*/
syntax NothingIsNotNothing is neutral binary operator with comparison precedence
<Left: Expression> "is not" <Right: Expression>
begin
MCNothingEvalIsNotEqualToNothing(Left, Right, output)
MCNothingEvalIsNothingNotEqualTo(Left, Right, output)
end syntax
--
/*
Summary: Determines whether <Target> is a boolean or not.
Target: Any expression
output: Returns true if the given expression <Target> is a boolean, and false if not.
*/
syntax IsABoolean is postfix operator with classification precedence
<Target: Expression> "is" "a" "boolean"
begin
MCTypeEvalIsABoolean(Target, output)
end syntax
/*
Summary: Determines whether <Target> is a number or not.
Target: Any expression
output: Returns true if the given expression <Target> is a number, and false if not.
*/
syntax IsANumber is postfix operator with classification precedence
<Target: Expression> "is" "a" "number"
begin
MCTypeEvalIsANumber(Target, output)
end syntax
/*
Summary: Determines whether <Target> is a string or not.
Target: Any expression
output: Returns true if the given expression <Target> is a string, and false if not.
*/
syntax IsAString is postfix operator with classification precedence
<Target: Expression> "is" "a" "string"
begin
MCTypeEvalIsAString(Target, output)
end syntax
/*
Summary: Determines whether <Target> is data or not.
Target: Any expression
output: Returns true if the given expression <Target> is data, and false if not.
*/
syntax IsAData is postfix operator with classification precedence
<Target: Expression> "is" "a" "data"
begin
MCTypeEvalIsAData(Target, output)
end syntax
/*
Summary: Determines whether <Target> is an array or not.
Target: Any expression
output: Returns true if the given expression <Target> is an array, and false if not.
*/
syntax IsAnArray is postfix operator with classification precedence
<Target: Expression> "is" "an" "array"
begin
MCTypeEvalIsAnArray(Target, output)
end syntax
/*
Summary: Determines whether <Target> is a list or not.
Target: Any expression
output: Returns true if the given expression <Target> is a list, and false if not.
*/
syntax IsAList is postfix operator with classification precedence
<Target: Expression> "is" "a" "list"
begin
MCTypeEvalIsAList(Target, output)
end syntax
--
end module