Packages

final case class Star[-In, +M, I, Out](r: Regex[In, M, I], greediness: Greediness, z: Out, fold: (Out, I) => Out) extends Regex[In, M, Out] with Product with Serializable

Linear Supertypes
Product, Equals, Regex[In, M, Out], Serializable, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Star
  2. Product
  3. Equals
  4. Regex
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Star(r: Regex[In, M, I], greediness: Greediness, z: Out, fold: (Out, I) => Out)

Type Members

  1. type Init = I

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def *: Regex[In, M, Chain[Out]]
    Definition Classes
    Regex
  4. def *?: Regex[In, M, Chain[Out]]
    Definition Classes
    Regex
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def ?: Regex[In, M, Option[Out]]
    Definition Classes
    Regex
  7. def ??: Regex[In, M, Option[Out]]
    Definition Classes
    Regex
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. def count(n: Int): Regex[In, M, Chain[Out]]
    Definition Classes
    Regex
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. val fold: (Out, I) => Out
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. val greediness: Greediness
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def map[Out2](f: (Out) => Out2): Regex[In, M, Out2]
    Definition Classes
    Regex
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def oneOrMore(greediness: Greediness): Regex[In, M, NonEmptyChain[Out]]
    Definition Classes
    Regex
  22. def optional(greediness: Greediness): Regex[In, M, Option[Out]]
    Definition Classes
    Regex
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. def quantifyFold[Out2](q: Quantifier, z: Out2)(fold: (Out2, Out) => Out2): Regex[In, M, Out2]
    Definition Classes
    Regex
  25. val r: Regex[In, M, I]
  26. def repeat(minInclusive: Int, maxInclusive: Option[Int], greediness: Greediness): Regex[In, M, Chain[Out]]
    Definition Classes
    Regex
  27. def star(greediness: Greediness): Regex[In, M, Chain[Out]]
    Definition Classes
    Regex
  28. def starFold[Out2](g: Greediness, z: Out2)(fold: (Out2, Out) => Out2): Regex[In, M, Out2]
    Definition Classes
    Regex
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. val z: Out

Inherited from Product

Inherited from Equals

Inherited from Regex[In, M, Out]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped