Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
Classes
|
Functions
|
Variables
Char Namespace Reference
Classes
class
Set
Functions
def
crange
(c1, c2)
Variables
list
sets
Function Documentation
◆
crange()
def Char.crange
(
c1
,
c2
)
Variable Documentation
◆
sets
list sets
Initial value:
1
= [
2
Set(
"bin_set"
,
"01"
),
3
Set(
"dec_set"
, crange(
'0'
,
'9'
)),
4
Set(
"hex_set"
, crange(
'0'
,
'9'
) + crange(
'a'
,
'f'
) + crange(
'A'
,
'F'
)),
5
Set(
"space_set"
,
" \n\t\r\v"
),
6
Set(
"letter_set"
, crange(
'a'
,
'z'
) + crange(
'A'
,
'Z'
)),
7
Set(
"lower_set"
, crange(
'a'
,
'z'
)),
8
Set(
"upper_set"
, crange(
'A'
,
'Z'
))
9
]
Char
Generated on Fri Jul 23 2021 11:32:45 for Elm by
1.8.17