mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-04 16:29:59 +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)
|
||
|
}
|