mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-01-05 21:59:05 +01: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)
|
||
|
}
|