summaryrefslogtreecommitdiff
path: root/ext/intl/uchar/uchar.stub.php
blob: 398b153185355ad2c3b77a0d4c24f5cb25d2b3af (plain)
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<?php

/** @generate-function-entries */

class IntlChar
{
    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function hasBinaryProperty($codepoint, int $property) {}

    /**
     * @param int|string $codepoint
     * @return array|null
     */
    public static function charAge($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return int|null
     */
    public static function charDigitValue($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return int|null
     */
    public static function charDirection($codepoint) {}

    /** @return int|null */
    public static function charFromName(string $characterName, int $nameChoice = IntlChar::UNICODE_CHAR_NAME) {}

    /**
     * @param int|string $codepoint
     * @return int|string|null
     */
    public static function charMirror($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return string|null
     */
    public static function charName($codepoint, int $nameChoice = IntlChar::UNICODE_CHAR_NAME) {}

    /**
     * @param int|string $codepoint
     * @return int|null
     */
    public static function charType($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return string|null
     */
    public static function chr($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return int|false|null
     */
    public static function digit($codepoint, int $radix = 10) {}

    /**
     * @param int|string $start
     * @param int|string $limit
     * @return bool|null
     */
    public static function enumCharNames($start, $limit, callable $callback, int $nameChoice = IntlChar::UNICODE_CHAR_NAME) {}

    /** @return void */
    public static function enumCharTypes(callable $callback) {}

    /**
     * @param int|string $codepoint
     * @return int|string|null
     */
    public static function foldCase($codepoint, int $options = IntlChar::FOLD_CASE_DEFAULT) {}

    /** @return int */
    public static function forDigit(int $digit, $radix = 10) {}

#if U_ICU_VERSION_MAJOR_NUM >= 52
    /**
     * @param int|string $codepoint
     * @return int|string|null
     */
    public static function getBidiPairedBracket($codepoint) {}
#endif

    /**
     * @param int|string $codepoint
     * @return int|null
     */
    public static function getBlockCode($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return int|null
     */
    public static function getCombiningClass($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return string|false|null
     */
    public static function getFC_NFKC_Closure($codepoint) {}

    /** @return int */
    public static function getIntPropertyMaxValue(int $property) {}

    /** @return int */
    public static function getIntPropertyMinValue(int $property) {}

    /**
     * @param int|string $codepoint
     * @return int|null
     */
    public static function getIntPropertyValue($codepoint, int $property) {}

    /**
     * @param int|string $codepoint
     * @return float|null
     */
    public static function getNumericValue($codepoint) {}

    /**
     * @param string $alias
     * @return int
     */
    public static function getPropertyEnum(string $alias) {}

    /** @return string|false */
    public static function getPropertyName(int $property, int $nameChoice = IntlChar::LONG_PROPERTY_NAME) {}

    /** @return int */
    public static function getPropertyValueEnum(int $property, string $name) {}

    /** @return string|false */
    public static function getPropertyValueName(int $property, int $value, $nameChoice = IntlChar::LONG_PROPERTY_NAME) {}

    /** @return array */
    public static function getUnicodeVersion() {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isalnum($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isalpha($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isbase($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isblank($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function iscntrl($codepoint ) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isdefined($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isdigit($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isgraph($codepoint ) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isIDIgnorable($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isIDPart($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isIDStart($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isISOControl($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isJavaIDPart($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isJavaIDStart($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isJavaSpaceChar($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function islower($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isMirrored($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isprint($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function ispunct($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isspace($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function istitle($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isUAlphabetic($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isULowercase($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isupper($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isUUppercase($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isUWhiteSpace($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isWhitespace($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return bool|null
     */
    public static function isxdigit($codepoint) {}

    /**
     * @param int|string $character
     * @return int|null
     */
    public static function ord($character) {}

    /**
     * @param int|string $codepoint
     * @return int|string|null
     */
    public static function tolower($codepoint) {}

    /**
     * @param mixed $codepoint
     * @return int|string|null
     */
    public static function totitle($codepoint) {}

    /**
     * @param int|string $codepoint
     * @return int|string|null
     */
    public static function toupper($codepoint) {}
}