CharPredicate

org.http4s.internal.CharPredicate
See theCharPredicate companion object
sealed abstract class CharPredicate extends Char => Boolean

Attributes

Companion
object
Source
CharPredicate.scala
Graph
Supertypes
trait Char => Boolean
class Object
trait Matchable
class Any
Known subtypes
class ArrayBased
class General
class MaskBased
class RangeBased

Members list

Value members

Abstract methods

Attributes

Source
CharPredicate.scala
def ++(chars: Seq[Char]): CharPredicate

Attributes

Source
CharPredicate.scala

Attributes

Source
CharPredicate.scala
def --(chars: Seq[Char]): CharPredicate

Attributes

Source
CharPredicate.scala

Concrete methods

def ++(char: Char): CharPredicate

Attributes

Source
CharPredicate.scala
def ++(chars: String): CharPredicate

Attributes

Source
CharPredicate.scala
def --(char: Char): CharPredicate

Attributes

Source
CharPredicate.scala
def --(chars: String): CharPredicate

Attributes

Source
CharPredicate.scala
def firstMatch(string: String): Option[Char]

Attributes

Source
CharPredicate.scala
def firstMismatch(string: String): Option[Char]

Attributes

Source
CharPredicate.scala
def indexOfFirstMatch(string: String): Int

Attributes

Source
CharPredicate.scala

Attributes

Source
CharPredicate.scala

Determines wether this CharPredicate is an instance of the high-performance, constant-time CharPredicate.MaskBased implementation.

Determines wether this CharPredicate is an instance of the high-performance, constant-time CharPredicate.MaskBased implementation.

Attributes

Source
CharPredicate.scala
def matchesAll(string: String): Boolean

Attributes

Source
CharPredicate.scala
def matchesAny(string: String): Boolean

Attributes

Source
CharPredicate.scala

Attributes

Source
CharPredicate.scala

Deprecated methods

Attributes

Deprecated
true
Source
CharPredicate.scala

Inherited methods

def andThen[A](g: Boolean => A): T1 => A

Attributes

Inherited from:
Function1
def apply(v1: Char): R

Attributes

Inherited from:
Function1
def compose[A](g: A => Char): A => R

Attributes

Inherited from:
Function1
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function1 -> Any
Inherited from:
Function1