object CharGroup
Common groups of characters as input for parser definitions.
These groups are all in the ASCII range. For dealing with
the entire unicode range you can use the generic anyWhile
parser that accepts a Char => Boolean
predicate.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CharGroup
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
alpha: NonEmptySet[Char]
All letters in the ASCII range (a to z, A to Z).
-
val
alphaNum: NonEmptySet[Char]
All letters and digits in the ASCII range (a to z, A to Z, 0 to 9).
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
val
digit: NonEmptySet[Char]
All decimal digits (0 to 9).
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
val
hexDigit: NonEmptySet[Char]
All hexadecimal digits (0 to 9, a to f, A to F).
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
val
lowerAlpha: NonEmptySet[Char]
All lower-case letters in the ASCII range (a to z).
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
val
octalDigit: NonEmptySet[Char]
All octal digits (0 to 7).
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
val
upperAlpha: NonEmptySet[Char]
All upper-case letters in the ASCII range (A to Z).
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()