(tag string, in reflect.Value)
| 373 | } |
| 374 | |
| 375 | func (e *encoder) intv(tag string, in reflect.Value) { |
| 376 | s := strconv.FormatInt(in.Int(), 10) |
| 377 | e.emitScalar(s, "", tag, yaml_PLAIN_SCALAR_STYLE, nil, nil, nil, nil) |
| 378 | } |
| 379 | |
| 380 | func (e *encoder) uintv(tag string, in reflect.Value) { |
| 381 | s := strconv.FormatUint(in.Uint(), 10) |