the new ListType type takes the of []any
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
||||
// All rights reserved.
|
||||
|
||||
// formatter.go
|
||||
package expr
|
||||
|
||||
type FmtOpt uint16
|
||||
|
||||
const (
|
||||
tty FmtOpt = 1 << iota
|
||||
)
|
||||
|
||||
type Formatter interface {
|
||||
ToString(options FmtOpt) string
|
||||
}
|
||||
Reference in New Issue
Block a user