Packages

class ImmutableContext extends Context

Source
Context.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ImmutableContext
  2. Context
  3. BabelSignature
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(update: Update): ImmutableContext

    Adds an element to the context.

    Adds an element to the context.

    If this is not a valid addition, then an exception is thrown.

    Definition Classes
    ImmutableContextContext
  4. def ++(updates: Traversable[Update]): ImmutableContext
    Definition Classes
    Context
  5. def ->[B](y: B): (ImmutableContext, B)
    Implicit
    This member is added by an implicit conversion from ImmutableContext to ArrowAssoc[ImmutableContext] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def check[T](t: T)(implicit arg0: Checkable[T]): Unit
    Definition Classes
    Context
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. def constant(name: String, params: List[Ty]): Option[Const]

    Returns Some(const) if (name,params) defines a constant.

    Returns Some(const) if (name,params) defines a constant.

    Definition Classes
    Context
  11. def constant(name: String): Option[Const]

    Returns Some(const) if name is a constant.

    Returns Some(const) if name is a constant.

    Definition Classes
    Context
  12. def constants: Iterable[Const]
    Definition Classes
    Context
  13. def contains(defn: Definition): Boolean

    Returns true iff the context contains the definition defn (the definitional expansion has to match as well).

    Returns true iff the context contains the definition defn (the definitional expansion has to match as well).

    Definition Classes
    Context
  14. def defaultTypeToI: Boolean
    Definition Classes
    ContextBabelSignature
  15. def definition(c: Const): Option[Expr]

    Returns Some(expandedDefinition) if c is a defined constant.

    Returns Some(expandedDefinition) if c is a defined constant.

    Definition Classes
    Context
  16. def definitions: Map[Const, Expr]
    Definition Classes
    Context
  17. def ensuring(cond: (ImmutableContext) ⇒ Boolean, msg: ⇒ Any): ImmutableContext
    Implicit
    This member is added by an implicit conversion from ImmutableContext to Ensuring[ImmutableContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (ImmutableContext) ⇒ Boolean): ImmutableContext
    Implicit
    This member is added by an implicit conversion from ImmutableContext to Ensuring[ImmutableContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: ⇒ Any): ImmutableContext
    Implicit
    This member is added by an implicit conversion from ImmutableContext to Ensuring[ImmutableContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): ImmutableContext
    Implicit
    This member is added by an implicit conversion from ImmutableContext to Ensuring[ImmutableContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  23. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ImmutableContext to StringFormat[ImmutableContext] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. def get[T](implicit arg0: Facet[T]): T

    Gets a facet of this context, initializing it if it is not present yet.

    Gets a facet of this context, initializing it if it is not present yet.

    Definition Classes
    Context
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def getConstructors(ty: TBase): Option[Vector[Const]]

    Returns Some(ctrs) if name is an inductive type with constructors ctrs.

    Returns Some(ctrs) if name is an inductive type with constructors ctrs.

    Definition Classes
    Context
  28. def getConstructors(ty: Ty): Option[Vector[Const]]

    Returns Some(ctrs) if name is an inductive type with constructors ctrs.

    Returns Some(ctrs) if name is an inductive type with constructors ctrs.

    Definition Classes
    Context
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def isDefEq(a: Expr, b: Expr): Boolean
    Definition Classes
    Context
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def isType(ty: TBase): Boolean

    Returns true iff ty is a defined base type.

    Returns true iff ty is a defined base type.

    Definition Classes
    Context
  33. def names: Iterable[String]
    Definition Classes
    Context
  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. def newMutable: MutableContext
    Definition Classes
    Context
  36. def newNameGenerator: NameGenerator
    Definition Classes
    Context
  37. def normalize(expression: Expr): Expr

    Normalizes an expression with the reduction rules stored in this context.

    Normalizes an expression with the reduction rules stored in this context.

    Definition Classes
    Context
  38. def normalizer: Normalizer
    Definition Classes
    Context
  39. def notationsForConst(const: ConstName): List[Notation]
    Definition Classes
    ContextBabelSignature
  40. def notationsForToken(token: Token): Option[Notation]
    Definition Classes
    ContextBabelSignature
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. def reductionRules: Iterable[ReductionRule]

    Returns a collection of all (expression-level) reduction rules of this context.

    Returns a collection of all (expression-level) reduction rules of this context.

    Definition Classes
    Context
  44. def signatureLookup(s: String): VarConst

    Decides whether the symbol with the given identifier should be a variable or constant, and what its type should be.

    Decides whether the symbol with the given identifier should be a variable or constant, and what its type should be.

    s

    The name of the symbol.

    returns

    Either IsVar(type) or IsConst(type).

    Definition Classes
    ContextBabelSignature
  45. def skolemDef(skSym: Const): Option[Expr]

    Returns the Skolem definition of skSym.

    Returns the Skolem definition of skSym. See gapt.expr.hol.SkolemFunctions.

    Definition Classes
    Context
  46. val state: State
    Definition Classes
    ImmutableContextContext
  47. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  48. def toImmutable: ImmutableContext
    Definition Classes
    ImmutableContextContext
  49. def toReadonly: ReadonlyMutableContext
    Definition Classes
    Context
  50. def toString(): String
    Definition Classes
    Context → AnyRef → Any
  51. val updates: List[Update]
    Definition Classes
    ImmutableContextContext
  52. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  55. def whnf(expression: Expr): Expr
    Definition Classes
    Context
  56. def [B](y: B): (ImmutableContext, B)
    Implicit
    This member is added by an implicit conversion from ImmutableContext to ArrowAssoc[ImmutableContext] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ImmutableContext to any2stringadd[ImmutableContext] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (immutableContext: any2stringadd[ImmutableContext]).+(other)
    Definition Classes
    any2stringadd

Inherited from Context

Inherited from BabelSignature

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ImmutableContext to any2stringadd[ImmutableContext]

Inherited by implicit conversion StringFormat from ImmutableContext to StringFormat[ImmutableContext]

Inherited by implicit conversion Ensuring from ImmutableContext to Ensuring[ImmutableContext]

Inherited by implicit conversion ArrowAssoc from ImmutableContext to ArrowAssoc[ImmutableContext]

Ungrouped