expr.go 167 B

12345678910111213141516171819
  1. package clause
  2. type ExprInterface interface {
  3. }
  4. type Expr struct {
  5. }
  6. type Average struct {
  7. }
  8. type Minimum struct {
  9. }
  10. type Maximum struct {
  11. }
  12. type Sum struct {
  13. }