(tag string, in reflect.Value)
| 378 | } |
| 379 | |
| 380 | func (e *encoder) uintv(tag string, in reflect.Value) { |
| 381 | s := strconv.FormatUint(in.Uint(), 10) |
| 382 | e.emitScalar(s, "", tag, yaml_PLAIN_SCALAR_STYLE, nil, nil, nil, nil) |
| 383 | } |
| 384 | |
| 385 | func (e *encoder) timev(tag string, in reflect.Value) { |
| 386 | t := in.Interface().(time.Time) |