type encoder …
func newEncoder() *encoder { … }
func newEncoderWithWriter(w io.Writer) *encoder { … }
func (e *encoder) init() { … }
func (e *encoder) finish() { … }
func (e *encoder) destroy() { … }
func (e *encoder) emit() { … }
func (e *encoder) must(ok bool) { … }
func (e *encoder) marshalDoc(tag string, in reflect.Value) { … }
func (e *encoder) marshal(tag string, in reflect.Value) { … }
func (e *encoder) mapv(tag string, in reflect.Value) { … }
func (e *encoder) fieldByIndex(v reflect.Value, index []int) (field reflect.Value) { … }
func (e *encoder) structv(tag string, in reflect.Value) { … }
func (e *encoder) mappingv(tag string, f func()) { … }
func (e *encoder) slicev(tag string, in reflect.Value) { … }
func isBase60Float(s string) (result bool) { … }
var base60float …
func isOldBool(s string) (result bool) { … }
func (e *encoder) stringv(tag string, in reflect.Value) { … }
func (e *encoder) boolv(tag string, in reflect.Value) { … }
func (e *encoder) intv(tag string, in reflect.Value) { … }
func (e *encoder) uintv(tag string, in reflect.Value) { … }
func (e *encoder) timev(tag string, in reflect.Value) { … }
func (e *encoder) floatv(tag string, in reflect.Value) { … }
func (e *encoder) nilv() { … }
func (e *encoder) emitScalar(value, anchor, tag string, style yaml_scalar_style_t, head, line, foot, tail []byte) { … }
func (e *encoder) nodev(in reflect.Value) { … }
func (e *encoder) node(node *Node, tail string) { … }