mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-07 15:09:30 -06:00
7 lines
143 B
Go
7 lines
143 B
Go
package expr
|
|
|
|
// Term represents a value that can Evaluate() into an integer.
|
|
type Term interface {
|
|
Free()
|
|
Evaluate() (int64, error)
|
|
}
|