formatter.go: number base options added

This commit is contained in:
Celestino Amoroso 2024-05-08 07:51:38 +02:00
parent f3abf5e77c
commit b2b0bb04c5

View File

@ -9,6 +9,10 @@ type FmtOpt uint16
const (
TTY FmtOpt = 1 << iota
MultiLine
Base2
Base8
Base10
Base16
)
type Formatter interface {