gopkg.in/yaml.v2.yaml_emitter_t.events_head (field)
14 uses
gopkg.in/yaml.v2 (current package)
emitterc.go#L117: event := &emitter.events[emitter.events_head]
emitterc.go#L125: emitter.events_head++
emitterc.go#L138: if emitter.events_head == len(emitter.events) {
emitterc.go#L142: switch emitter.events[emitter.events_head].typ {
emitterc.go#L155: if len(emitter.events)-emitter.events_head > accumulate {
emitterc.go#L159: for i := emitter.events_head; i < len(emitter.events); i++ {
emitterc.go#L747: if len(emitter.events)-emitter.events_head < 2 {
emitterc.go#L750: return emitter.events[emitter.events_head].typ == yaml_SEQUENCE_START_EVENT &&
emitterc.go#L751: emitter.events[emitter.events_head+1].typ == yaml_SEQUENCE_END_EVENT
emitterc.go#L756: if len(emitter.events)-emitter.events_head < 2 {
emitterc.go#L759: return emitter.events[emitter.events_head].typ == yaml_MAPPING_START_EVENT &&
emitterc.go#L760: emitter.events[emitter.events_head+1].typ == yaml_MAPPING_END_EVENT
emitterc.go#L766: switch emitter.events[emitter.events_head].typ {
yamlh.go#L680: events_head int // The head of the event queue.
![]() |
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. |