Skip to content
Snippets Groups Projects
Select Git revision
  • c09c3f9b4e1d567c67ddd82358463f7df557b7d6
  • main default protected
  • 0.5.1
  • 0.5.0
  • 0.4.0
  • 0.3.0
  • 0.2.0
  • 0.1.0
  • v0.5.1
  • v0.5.0
  • v0.4.0
  • v0.3.0
  • v0.2.0
  • v0.1.0
14 results

types.go

Blame
  • types.go 358 B
    package vm
    
    const (
    	Nub = iota
    	Top
    	Limit
    	Group
    	Order
    	Offset
    	Transfer
    	Restrict
    	Summarize
    	Projection
    	SetUnion
    	SetIntersect
    	SetDifference
    	MultisetUnion
    	MultisetIntersect
    	MultisetDifference
    	EqJoin
    	SemiJoin
    	InnerJoin
    	NaturalJoin
    	Output
    	MergeSummarize
    )
    
    type Instruction struct {
    	Op  int
    	Arg interface{}
    }
    
    type Instructions []Instruction