org.wquery.query

operations

package operations

Visibility
  1. Public
  2. All

Type Members

  1. case class AssignmentOp(variables: List[SetVariable], op: AlgebraOp) extends QueryOp with Product with Serializable

  2. case class BlockOp(ops: List[AlgebraOp]) extends QueryOp with Product with Serializable

  3. case class EmitOp(op: AlgebraOp) extends QueryOp with Product with Serializable

  4. case class FunctionDefinitionArgumentsRefOp() extends QueryOp with Product with Serializable

  5. case class FunctionDefinitionOp(name: String, op: AlgebraOp) extends QueryOp with Product with Serializable

  6. case class IfElseOp(conditionOp: AlgebraOp, ifOp: AlgebraOp, elseOp: Option[AlgebraOp]) extends QueryOp with Product with Serializable

  7. case class IterateOp(bindingOp: AlgebraOp, iteratedOp: AlgebraOp) extends QueryOp with Product with Serializable

  8. sealed abstract class QueryOp extends AlgebraOp

  9. case class WhileDoOp(conditionOp: AlgebraOp, iteratedOp: AlgebraOp) extends QueryOp with Product with Serializable

Ungrouped