object NumberLiteral
Configurable base parsers for number literals.
- Alphabetic
- By Inheritance
- NumberLiteral
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- case class NumericParser(digits: NonEmptySet[Char], prefix: Option[PrefixedParser[String]] = None, underscores: Boolean = false, exponent: Option[Parser[String]] = None, suffix: Option[Parser[String]] = None, allowFollowingLetter: Boolean = false) extends Parser[Seq[CodeSpan]] with CodeParserBase with Product with Serializable
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
val
binary: NumericParser
Parses a binary number literal.
Parses a binary number literal. It must start with
0b
or0B
, followed by one or more binary digits, e.g.\0b100110
. -
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
val
decimalFloat: NumericParser
Parses a decimal float with an optional exponent.
-
val
decimalInt: NumericParser
Parses a decimal integer.
-
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
hex: NumericParser
Parses a hexadecimal number literal.
Parses a hexadecimal number literal. It must start with
0x
or0X
, followed by one or more hex digits, e.g.\0x25ff7
. -
val
hexFloat: NumericParser
Parses a hexadecimal float literal.
Parses a hexadecimal float literal. It must start with
0x
or0X
, followed by one or more hex digits, e.g.\0x25ff7.fa
. -
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
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
octal: NumericParser
Parses an octal number literal.
Parses an octal number literal. It must start with
0o
or0O
, followed by one or more octal digits, e.g.\0o257
. -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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()
-
object
DigitParsers
Parsers for common sets of digits, like hex or decimal.