2021-07-18 08:00:20 +02:00
|
|
|
module builtin
|
|
|
|
|
|
|
|
pub fn (b byte) is_space() bool {
|
|
|
|
mut result := false
|
2021-08-25 13:40:53 +02:00
|
|
|
#result.val = /^\s*$/.test(String.fromCharCode(b))
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (c byte) is_letter() bool {
|
|
|
|
result := false
|
|
|
|
|
|
|
|
#result.val = (c.val >= `a`.charCodeAt() && c.val <= `z`.charCodeAt()) || (c.val >= `A`.charCodeAt() && c.val <= `Z`.charCodeAt())
|
2021-07-18 08:00:20 +02:00
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
2021-09-08 19:30:46 +02:00
|
|
|
|
|
|
|
pub fn (c byte) str() string {
|
|
|
|
res := ''
|
|
|
|
#res.str = c.val.toString()
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
2021-10-03 09:08:21 +02:00
|
|
|
|
|
|
|
pub fn (c byte) ascii_str() string {
|
|
|
|
res := ''
|
|
|
|
#res.str = String.fromCharCode(c.val)
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (c byte) repeat(count int) string {
|
|
|
|
mut res := ''
|
|
|
|
for _ in 0 .. count {
|
|
|
|
res += c.ascii_str()
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|