char

io.github.iltotore.iron.constraint.char
object char

Attributes

Source
char.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
char.type

Members list

Type members

Classlikes

final class Digit

Tests if the input is a digit (from 0 to 9).

Tests if the input is a digit (from 0 to 9).

Attributes

Companion
object
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
object Digit

Attributes

Companion
class
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
Self type
Digit.type
final class Letter

Tests if the input is a letter (from a to z, case insensitive).

Tests if the input is a letter (from a to z, case insensitive).

Attributes

Companion
object
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
object Letter

Attributes

Companion
class
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
Self type
Letter.type
final class LowerCase

Tests if the given input is lower-cased.

Tests if the given input is lower-cased.

Attributes

Companion
object
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
object LowerCase

Attributes

Companion
class
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
Self type
LowerCase.type
final class UpperCase

Tests if the input is upper-cased.

Tests if the input is upper-cased.

Attributes

Companion
object
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
object UpperCase

Attributes

Companion
class
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
Self type
UpperCase.type
final class Whitespace

Tests if the input is whitespace.

Tests if the input is whitespace.

Attributes

Companion
object
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
object Whitespace

Attributes

Companion
class
Source
char.scala
Supertypes
class Object
trait Matchable
class Any
Self type
Whitespace.type

Types

type Special = Not[Digit] & Not[Letter]

Tests if the input is neither a digit or a letter.

Tests if the input is neither a digit or a letter.

Attributes

Source
char.scala