mirror of
https://codeberg.org/superseriousbusiness/gotosocial.git
synced 2024-12-19 15:42:16 +03: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)
|
||
|
}
|