mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-02-09 14:20:16 +00:00
8 lines
143 B
Go
8 lines
143 B
Go
package expr
|
|
|
|
// Term represents a value that can Evaluate() into an integer.
|
|
type Term interface {
|
|
Free()
|
|
Evaluate() (int64, error)
|
|
}
|