(ctx *FmtCtx, b string)
| 1571 | func (*DBytes) AmbiguousFormat() bool { return true } |
| 1572 | |
| 1573 | func writeAsHexString(ctx *FmtCtx, b string) { |
| 1574 | for i := 0; i < len(b); i++ { |
| 1575 | ctx.Write(stringencoding.RawHexMap[b[i]]) |
| 1576 | } |
| 1577 | } |
| 1578 | |
| 1579 | // Format implements the NodeFormatter interface. |
| 1580 | func (d *DBytes) Format(ctx *FmtCtx) { |