Packages

  • package root
    Definition Classes
    root
  • package z3
    Definition Classes
    root
  • package scala
    Definition Classes
    z3
  • package dsl
    Definition Classes
    scala
  • object Operands

    We call Operands what is otherwise known as "Rich" classes (from the "Pimp My Library" paradigm).

    We call Operands what is otherwise known as "Rich" classes (from the "Pimp My Library" paradigm). For simplicity and to avoid ambiguous resolutions, operations on operands always return operands, never trees. Conversion from and to trees are done by implicit functions in the dsl package object.

    Definition Classes
    dsl
  • BitVectorOperand
  • BoolOperand
  • IntOperand
  • SetOperand
c

z3.scala.dsl.Operands

SetOperand

class SetOperand extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SetOperand
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def !==(other: SetOperand): BoolOperand
  2. def **(other: SetOperand): SetOperand
  3. def ++(other: SetOperand): SetOperand
  4. def --(other: SetOperand): SetOperand
  5. def ===(other: SetOperand): BoolOperand
  6. def subsetOf(other: SetOperand): BoolOperand
  7. val tree: Tree[_ >: BottomSort <: SetSort]