at.logic.skeptik.judgment.mutable

SequentLike

trait SequentLike[+This <: SequentLike[This]] extends judgment.SequentLike[This]

A trait for mutable sequent-like data structures.

Version

0.2

Since

0.2

Linear Supertypes
judgment.SequentLike[This], AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SequentLike
  2. SequentLike
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def +(f: E): This

    Definition Classes
    SequentLike
  2. abstract def +:(f: E): This

    Definition Classes
    SequentLike
  3. abstract def +=(f: E): This

    Adds a formula to the succedent of the sequent.

    Adds a formula to the succedent of the sequent.

    f

    the formula to be added.

    returns

    the sequent itself.

    Example:
    1. s += f

  4. abstract def -(f: E): This

    Definition Classes
    SequentLike
  5. abstract def -:(f: E): This

    Definition Classes
    SequentLike
  6. abstract def -=(f: E): This

    Removes a formula from the succedent of the sequent.

    Removes a formula from the succedent of the sequent.

    f

    the formula to be removed.

    returns

    the sequent itself.

    Example:
    1. s += f

  7. abstract def =+:(f: E): This

    Adds a formula to the antecedent of the sequent.

    Adds a formula to the antecedent of the sequent.

    f

    the formula to be added.

    returns

    the sequent itself.

    Example:
    1. s += f

  8. abstract def =-:(f: E): This

    Removes a formula from the antecedent of the sequent.

    Removes a formula from the antecedent of the sequent.

    f

    the formula to be removed.

    returns

    the sequent itself.

    Example:
    1. s += f

  9. abstract def ant: Iterable[E]

    Definition Classes
    SequentLike
  10. abstract def diff(that: Sequent): This

    Definition Classes
    SequentLike
  11. abstract def intersect(that: Sequent): This

    Definition Classes
    SequentLike
  12. abstract def suc: Iterable[E]

    Definition Classes
    SequentLike
  13. abstract def union(that: Sequent): This

    Definition Classes
    SequentLike

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ->[B](y: B): (SequentLike[This], B)

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to ArrowAssoc[SequentLike[This]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def ensuring(cond: (SequentLike[This]) ⇒ Boolean, msg: ⇒ Any): SequentLike[This]

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to Ensuring[SequentLike[This]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (SequentLike[This]) ⇒ Boolean): SequentLike[This]

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to Ensuring[SequentLike[This]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): SequentLike[This]

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to Ensuring[SequentLike[This]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): SequentLike[This]

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to Ensuring[SequentLike[This]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def isTautological: Boolean

    Definition Classes
    SequentLike
  21. def logicalSize: Int

    Definition Classes
    SequentLike
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def size: Int

    Definition Classes
    SequentLike
  26. def subsequentOf(that: Sequent): Boolean

    Definition Classes
    SequentLike
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. def [B](y: B): (SequentLike[This], B)

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to ArrowAssoc[SequentLike[This]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to StringAdd 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:
    (sequentLike: StringAdd).+(other)
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (sequentLike: StringAdd).self
    Definition Classes
    StringAdd
  3. val self: Any

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (sequentLike: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: SequentLike[This]

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to ArrowAssoc[SequentLike[This]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (sequentLike: ArrowAssoc[SequentLike[This]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: SequentLike[This]

    Implicit information
    This member is added by an implicit conversion from SequentLike[This] to Ensuring[SequentLike[This]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (sequentLike: Ensuring[SequentLike[This]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from judgment.SequentLike[This]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SequentLike[This] to StringAdd

Inherited by implicit conversion any2stringfmt from SequentLike[This] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from SequentLike[This] to ArrowAssoc[SequentLike[This]]

Inherited by implicit conversion any2Ensuring from SequentLike[This] to Ensuring[SequentLike[This]]

Ungrouped