We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc5cfe2 commit 2982490Copy full SHA for 2982490
src/core/CCChar.ml
@@ -26,7 +26,9 @@ include Infix
26
27
let is_uppercase_ascii c = c > '\064' && c < '\091'
28
let is_lowercase_ascii c = c > '\096' && c < '\123'
29
+
30
let is_letter_ascii c =
- (is_lowercase_ascii[@inlined]) c || (is_uppercase_ascii[@inlined]) c
31
+ (is_lowercase_ascii [@inlined]) c || (is_uppercase_ascii [@inlined]) c
32
33
let is_digit_ascii c = c > '\047' && c < '\058'
34
let is_whitespace_ascii c = c = '\032' || (c > '\008' && c < '\014')
0 commit comments