Packages

final case class MapFilter[-In, +M, I, Out](r: Regex[In, M, I], f: (I) => Option[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. MapFilter
  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 MapFilter(r: Regex[In, M, I], f: (I) => Option[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. val f: (I) => Option[Out]
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def map[Out2](f: (Out) => Out2): Regex[In, M, Out2]
    Definition Classes
    Regex
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def oneOrMore(greediness: Greediness): Regex[In, M, NonEmptyChain[Out]]
    Definition Classes
    Regex
  21. def optional(greediness: Greediness): Regex[In, M, Option[Out]]
    Definition Classes
    Regex
  22. def productElementNames: Iterator[String]
    Definition Classes
    Product
  23. def quantifyFold[Out2](q: Quantifier, z: Out2)(fold: (Out2, Out) => Out2): Regex[In, M, Out2]
    Definition Classes
    Regex
  24. val r: Regex[In, M, I]
  25. def repeat(minInclusive: Int, maxInclusive: Option[Int], greediness: Greediness): Regex[In, M, Chain[Out]]
    Definition Classes
    Regex
  26. def star(greediness: Greediness): Regex[In, M, Chain[Out]]
    Definition Classes
    Regex
  27. def starFold[Out2](g: Greediness, z: Out2)(fold: (Out2, Out) => Out2): Regex[In, M, Out2]
    Definition Classes
    Regex
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Product

Inherited from Equals

Inherited from Regex[In, M, Out]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped