Packages

sealed trait Sequence extends Property with SequenceIntf

A Linear Temporal Logic (LTL) sequence.

Source
LTL.scala
Linear Supertypes
SequenceIntf, Property, PropertyIntf, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Sequence
  2. SequenceIntf
  3. Property
  4. PropertyIntf
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ###(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    Equivalent to a ##1 b in SVA.

    Equivalent to a ##1 b in SVA.

    Definition Classes
    SequenceIntf
  4. def ##*(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    Equivalent to a ##[*] b in SVA.

    Equivalent to a ##[*] b in SVA.

    Definition Classes
    SequenceIntf
  5. def ##+(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    Equivalent to a ##[+] b in SVA.

    Equivalent to a ##[+] b in SVA.

    Definition Classes
    SequenceIntf
  6. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Sequence toany2stringadd[Sequence] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  7. def ->[B](y: B): (Sequence, B)
    Implicit
    This member is added by an implicit conversion from Sequence toArrowAssoc[Sequence] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def _andPropImpl(other: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
    Definition Classes
    Property
  10. def _andSeqImpl(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  11. def _clockImpl(clock: Clock)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
    Definition Classes
    SequenceProperty
  12. def _concatImpl(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  13. def _delayAtLeastImpl(delay: Int)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  14. def _delayImpl(delay: Int = 1)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  15. def _delayRangeImpl(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  16. def _eventuallyImpl(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
    Definition Classes
    Property
  17. def _gotoRepeatImpl(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  18. def _impl_###(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  19. def _impl_##*(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  20. def _impl_##+(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  21. def _impl_|->(prop: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
  22. def _impl_|=>(prop: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
  23. def _implicationImpl(prop: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
  24. def _implicationNonOverlappingImpl(prop: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
  25. def _intersectPropImpl(other: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
    Definition Classes
    Property
  26. def _intersectSeqImpl(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  27. def _nonConsecutiveRepeatImpl(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  28. def _notImpl(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
    Definition Classes
    Property
  29. def _orPropImpl(other: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
    Definition Classes
    Property
  30. def _orSeqImpl(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  31. def _pastClockImpl(clock: Clock)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  32. def _pastDelayClockImpl(delay: Int, clock: Clock)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  33. def _pastImpl(delay: Int)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  34. def _repeatAtLeastImpl(n: Int)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  35. def _repeatImpl(n: Int = 1)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  36. def _repeatRangeImpl(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  37. def _untilPropImpl(other: Property)(implicit sourceInfo: SourceInfo): Property
    Attributes
    protected
    Definition Classes
    Property
  38. def _untilSeqImpl(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence
    Attributes
    protected
  39. def and(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.and.

    Definition Classes
    SequenceIntf
  40. def and(other: Property)(implicit sourceInfo: SourceInfo): Property

    See Property.and.

    Definition Classes
    PropertyIntf
  41. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  42. def clock(clock: Clock)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.clock.

    Definition Classes
    SequenceIntf
  43. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  44. def concat(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.concat.

    Definition Classes
    SequenceIntf
  45. def delay(delay: Int = 1)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.delay.

    Definition Classes
    SequenceIntf
  46. def delayAtLeast(delay: Int)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.delayAtLeast.

    Definition Classes
    SequenceIntf
  47. def delayRange(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.delayRange.

    Definition Classes
    SequenceIntf
  48. def ensuring(cond: (Sequence) => Boolean, msg: => Any): Sequence
    Implicit
    This member is added by an implicit conversion from Sequence toEnsuring[Sequence] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  49. def ensuring(cond: (Sequence) => Boolean): Sequence
    Implicit
    This member is added by an implicit conversion from Sequence toEnsuring[Sequence] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  50. def ensuring(cond: Boolean, msg: => Any): Sequence
    Implicit
    This member is added by an implicit conversion from Sequence toEnsuring[Sequence] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  51. def ensuring(cond: Boolean): Sequence
    Implicit
    This member is added by an implicit conversion from Sequence toEnsuring[Sequence] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  52. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  53. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  54. def eventually(implicit sourceInfo: SourceInfo): Property

    See Property.eventually.

    Definition Classes
    PropertyIntf
  55. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  56. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  57. def gotoRepeat(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.gotoRepeat.

    Definition Classes
    SequenceIntf
  58. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  59. def implication(prop: Property)(implicit sourceInfo: SourceInfo): Property

    See Property.implication.

    Definition Classes
    SequenceIntf
  60. def implicationNonOverlapping(prop: Property)(implicit sourceInfo: SourceInfo): Property

    See Property.implication.

    Definition Classes
    SequenceIntf
  61. def intersect(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.intersect.

    Definition Classes
    SequenceIntf
  62. def intersect(other: Property)(implicit sourceInfo: SourceInfo): Property

    See Property.intersect.

    Definition Classes
    PropertyIntf
  63. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  64. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  65. def nonConsecutiveRepeat(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.nonConsecutiveRepeat.

    Definition Classes
    SequenceIntf
  66. def not(implicit sourceInfo: SourceInfo): Property

    See Property.not.

    Definition Classes
    PropertyIntf
  67. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  69. def or(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.or.

    Definition Classes
    SequenceIntf
  70. def or(other: Property)(implicit sourceInfo: SourceInfo): Property

    See Property.or.

    Definition Classes
    PropertyIntf
  71. def past(delay: Int, clock: Clock)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.past.

    Definition Classes
    SequenceIntf
  72. def past(clock: Clock)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.past.

    Definition Classes
    SequenceIntf
  73. def past(delay: Int = 1)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.past.

    Definition Classes
    SequenceIntf
  74. def repeat(n: Int = 1)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.repeat.

    Definition Classes
    SequenceIntf
  75. def repeatAtLeast(n: Int)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.repeatAtLeast.

    Definition Classes
    SequenceIntf
  76. def repeatRange(min: Int, max: Int)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.repeatRange.

    Definition Classes
    SequenceIntf
  77. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  78. def toString(): String
    Definition Classes
    AnyRef → Any
  79. def until(other: Sequence)(implicit sourceInfo: SourceInfo): Sequence

    See Sequence.until.

    Definition Classes
    SequenceIntf
  80. def until(other: Property)(implicit sourceInfo: SourceInfo): Property

    See Property.until.

    Definition Classes
    PropertyIntf
  81. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  82. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  83. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  84. def |->(prop: Property)(implicit sourceInfo: SourceInfo): Property

    Equivalent to |-> in SVA.

    Equivalent to |-> in SVA.

    Definition Classes
    SequenceIntf
  85. def |=>(prop: Property)(implicit sourceInfo: SourceInfo): Property

    Equivalent to |=> in SVA.

    Equivalent to |=> in SVA.

    Definition Classes
    SequenceIntf

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Sequence toStringFormat[Sequence] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (Sequence, B)
    Implicit
    This member is added by an implicit conversion from Sequence toArrowAssoc[Sequence] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from SequenceIntf

Inherited from Property

Inherited from PropertyIntf

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromSequence to any2stringadd[Sequence]

Inherited by implicit conversion StringFormat fromSequence to StringFormat[Sequence]

Inherited by implicit conversion Ensuring fromSequence to Ensuring[Sequence]

Inherited by implicit conversion ArrowAssoc fromSequence to ArrowAssoc[Sequence]

Ungrouped