Packages

object Regex extends Serializable

Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Regex
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class AndThen[-In, +M, I, Out](l: Regex[In, M, (I) => Out], r: Regex[In, M, I]) extends Regex[In, M, Out] with Product with Serializable
  2. abstract class Elem[-In, +M, Out] extends Regex[In, M, Out]
  3. final case class FMap[-In, +M, I, Out](r: Regex[In, M, I], f: (I) => Out) extends Regex[In, M, Out] with Product with Serializable
  4. final case class Fail[A]() extends Regex[Any, Nothing, A] with Product with Serializable
  5. 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
  6. final case class Or[-In, +M, Out](alternatives: NonEmptyList[Regex[In, M, Out]]) extends Regex[In, M, Out] with Product with Serializable
  7. final case class Repeat[-In, +M, I, Out](r: Regex[In, M, I], quantifier: Quantifier, z: Out, fold: (Out, I) => Out) extends Regex[In, M, Out] with Product with Serializable
  8. 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
  9. final case class Void[-In, +M, I](r: Regex[In, M, I]) extends Regex[In, M, Unit] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit def alternativeRegex[In, M]: Alternative[[γ$1$]Regex[In, M, γ$1$]]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def assignThreadIds[In, M, A](re: Regex[In, M, A]): Regex[In, (ThreadId, M), A]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def compile[In, M, Out](r: Regex[In, M, Out]): ParseState[In, Out]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. def fold[In, M, Out, R](eps: (Is[Unit, Out]) => R, fail: () => R, elem: (M, (In) => Option[Out]) => R, andThen: ~>[[i](Regex[In, M, (i) => Out], Regex[In, M, i]), [a]R], star: ~>[[i](Regex[In, M, i], Greediness, Out, (Out, i) => Out), [a]R], repeat: ~>[[i](Regex[In, M, i], Quantifier, Out, (Out, i) => Out), [a]R], mapped: ~>[[a](Regex[In, M, a], (a) => Out), [a]R], mapFilter: ~>[[a](Regex[In, M, a], (a) => Option[Out]), [a]R], or: (NonEmptyList[Regex[In, M, Out]]) => R, void: (Is[Unit, Out]) => ~>[[γ$0$]Regex[In, M, γ$0$], [a]R])(r: Regex[In, M, Out]): R
  13. implicit def functorFilterRegex[In, M]: FunctorFilter[[γ$3$]Regex[In, M, γ$3$]]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def matcher[F[_], In, M, Out](r: Regex[In, M, Out])(implicit arg0: Foldable[F]): (F[In]) => Boolean
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. implicit def nonCapturingRegexKleene[In, M]: Rig[Regex[In, M, Unit]]

    At the moment this is just a Rig, but a Kleene algebra type class may be introduced in the future.

  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. implicit def toRegexCOps[Out](r: Regex[Char, Match[Char], Out]): RegexCOps[Out]
  24. implicit def toRegexOps[In, M, Out](r: Regex[In, M, Out]): RegexOps[In, M, Out]
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. def transformRecursive[In, M](f: ~>[[γ$12$]Regex[In, M, γ$12$], [γ$13$]Regex[In, M, γ$13$]]): ~>[[γ$14$]Regex[In, M, γ$14$], [γ$15$]Regex[In, M, γ$15$]]
  27. def traverseM[F[_], In, M, M2, Out](re: Regex[In, M, Out])(f: (M) => F[M2])(implicit F: Applicative[F]): F[Regex[In, M2, Out]]
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. object Elem extends Serializable
  32. case object Eps extends Regex[Any, Nothing, Unit] with Product with Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped