2024-05-01 21:47:27 +02:00
|
|
|
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
|
|
// All rights reserved.
|
|
|
|
|
|
|
|
// formatter.go
|
|
|
|
package expr
|
|
|
|
|
|
|
|
type FmtOpt uint16
|
|
|
|
|
|
|
|
const (
|
2024-05-01 21:53:03 +02:00
|
|
|
TTY FmtOpt = 1 << iota
|
|
|
|
MultiLine
|
2024-05-01 21:47:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Formatter interface {
|
|
|
|
ToString(options FmtOpt) string
|
|
|
|
}
|