Object

ceedubs.irrec.regex

Regex

Related Doc: package regex

Permalink

object Regex

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

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def allOf[A](values: A*): Regex[A]

    Permalink
  5. def allOfF[F[_], A](values: F[A])(implicit foldableF: Foldable[F]): Regex[A]

    Permalink
  6. def allOfFR[F[_], A](values: F[Kleene[A]])(implicit foldableF: Foldable[F]): Kleene[A]

    Permalink
  7. def allOfR[A](values: Kleene[A]*): Kleene[A]

    Permalink
  8. def andThen[A](l: Kleene[A], r: Kleene[A]): Kleene[A]

    Permalink
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def count[A](n: Int, r: Kleene[A]): Kleene[A]

    Permalink
  12. def empty[A]: Kleene[A]

    Permalink

    A match on the empty string (this should always succeed and consume no input).

  13. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. def impossible[A]: Kleene[A]

    Permalink

    A regular expression that will never successfully match.

    A regular expression that will never successfully match.

    This is part of all Kleene algebras but may not be particularly useful in the context of string/character regexes.

  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def lit[A](value: A): Regex[A]

    Permalink

    alias for literal

  21. def literal[A](value: A): Regex[A]

    Permalink
  22. def matcher[F[_], A](r: Regex[A])(implicit orderingA: Ordering[A], foldableF: Foldable[F]): (F[A]) ⇒ Boolean

    Permalink
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. def oneOf[A](a1: A, as: A*): Regex[A]

    Permalink
  27. def oneOfF[F[_], A](values: F[A])(implicit reducibleF: Reducible[F]): Regex[A]

    Permalink
  28. def oneOfFR[F[_], A](values: F[Kleene[A]])(implicit reducibleF: Reducible[F]): Kleene[A]

    Permalink
  29. def oneOfR[A](r1: Kleene[A], rs: Kleene[A]*): Kleene[A]

    Permalink
  30. def oneOrMore[A](value: Kleene[A]): Kleene[A]

    Permalink

    AKA + in regular expressions, but I avoided confusion with Plus corresponding to "or".

  31. def or[A](l: Kleene[A], r: Kleene[A]): Kleene[A]

    Permalink
  32. def range[A](l: A, r: A): Regex[A]

    Permalink
  33. def repeat[A](minInclusive: Int, maxInclusive: Int, r: Kleene[A]): Kleene[A]

    Permalink
  34. def seq[A](values: Seq[A]): Regex[A]

    Permalink
  35. def star[A](value: Kleene[A]): Kleene[A]

    Permalink
  36. def stringMatcher(r: Regex[Char]): (String) ⇒ Boolean

    Permalink
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. def wildcard[A]: Regex[A]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped