Regex

zio.schema.validation.Regex$
See theRegex companion trait
object Regex

Attributes

Companion:
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Regex.type

Members list

Concise view

Type members

Classlikes

final case class Alternate(left: Regex, right: Regex) extends Regex

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
final case class Between(start: Char, end: Char) extends Regex

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
final case class CharacterSet(set: Set[Char]) extends Regex

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
case object Digit extends Regex

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
Self type
Digit.type
case object Empty extends Regex

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
Self type
Empty.type
case object Letter extends Regex

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
Self type
Letter.type
final case class Literal(str: String) extends Regex

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
final case class Repeat(regex: Regex, min: Option[Int], max: Option[Int]) extends Regex

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any
final case class Sequence(first: Regex, second: Regex) extends Regex

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Regex
class Object
trait Matchable
class Any

Inherited types

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def between(minChar: Char, maxChar: Char): Regex
def filter(f: Char => Boolean): Regex
def literal(str: String): Regex
def oneOf(chars: Char*): Regex