Source File
yamlprivateh.go
Belonging Package
gopkg.in/yaml.v2
package yaml
input_raw_buffer_size = 512
output_buffer_size = 128
output_raw_buffer_size = (output_buffer_size*2 + 2)
initial_stack_size = 16
initial_queue_size = 16
initial_string_size = 16
)
func ( []byte, int) bool {
return (([] == 0x0A) || // . == #x0A
([] >= 0x20 && [] <= 0x7E) || // #x20 <= . <= #x7E
([] == 0xC2 && [+1] >= 0xA0) || // #0xA0 <= . <= #xD7FF
([] > 0xC2 && [] < 0xED) ||
([] == 0xED && [+1] < 0xA0) ||
([] == 0xEE) ||
([] == 0xEF && // #xE000 <= . <= #xFFFD
!([+1] == 0xBB && [+2] == 0xBF) && // && . != #xFEFF
!([+1] == 0xBF && ([+2] == 0xBE || [+2] == 0xBF))))
}
return [] == ' ' || [] == '\t'
}
func ( []byte, int) bool {
return ([] == '\r' || // CR (#xD)
[] == '\n' || // LF (#xA)
[] == 0xC2 && [+1] == 0x85 || // NEL (#x85)
[] == 0xE2 && [+1] == 0x80 && [+2] == 0xA8 || // LS (#x2028)
[] == 0xE2 && [+1] == 0x80 && [+2] == 0xA9) // PS (#x2029)
}
func ( []byte, int) bool {
return [] == '\r' && [+1] == '\n'
}
return ( // is_break:
[] == '\r' || // CR (#xD)
[] == '\n' || // LF (#xA)
[] == 0xC2 && [+1] == 0x85 || // NEL (#x85)
[] == 0xE2 && [+1] == 0x80 && [+2] == 0xA8 || // LS (#x2028)
[] == 0)
}
return ( // is_space:
[] == '\r' || // CR (#xD)
[] == '\n' || // LF (#xA)
[] == 0xC2 && [+1] == 0x85 || // NEL (#x85)
[] == 0xE2 && [+1] == 0x80 && [+2] == 0xA8 || // LS (#x2028)
[] == 0xE2 && [+1] == 0x80 && [+2] == 0xA9 || // PS (#x2029)
[] == 0)
}
return ( // is_blank:
[] == '\r' || // CR (#xD)
[] == '\n' || // LF (#xA)
[] == 0xC2 && [+1] == 0x85 || // NEL (#x85)
[] == 0xE2 && [+1] == 0x80 && [+2] == 0xA8 || // LS (#x2028)
[] == 0xE2 && [+1] == 0x80 && [+2] == 0xA9 || // PS (#x2029)
[] == 0)
}
if &0x80 == 0x00 {
return 1
}
if &0xE0 == 0xC0 {
return 2
}
if &0xF0 == 0xE0 {
return 3
}
if &0xF8 == 0xF0 {
return 4
}
return 0
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |