func gopkg.in/yaml.v2.is_space
12 uses
gopkg.in/yaml.v2 (current package)
emitterc.go#L1061: if is_space(value, i) {
emitterc.go#L1323: if is_space(value, i) {
emitterc.go#L1324: if allow_breaks && !spaces && emitter.column > emitter.best_width && !is_space(value, i+1) {
emitterc.go#L1379: if is_space(value, i) {
emitterc.go#L1380: if allow_breaks && !spaces && emitter.column > emitter.best_width && i > 0 && i < len(value)-1 && !is_space(value, i+1) {
emitterc.go#L1520: } else if is_space(value, i) {
emitterc.go#L1525: if is_space(value, i+1) {
emitterc.go#L1551: if is_space(value, 0) || is_break(value, 0) {
emitterc.go#L1670: if !breaks && is_space(value, i) && !is_space(value, i+1) && emitter.column > emitter.best_width {
scannerc.go#L2270: for (*indent == 0 || parser.mark.column < *indent) && is_space(parser.buffer, parser.buffer_pos) {
yamlprivateh.go#L86: func is_space(b []byte, i int) bool {
 |
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. |