Numbers

object Numbers
class Object
trait Matchable
class Any

Value members

Concrete fields

val bigInt: Parser[BigInt]

map a signedIntString into a BigInt

map a signedIntString into a BigInt

val digit: Parser[Char]

a single base 10 digit

a single base 10 digit

val digits: Parser[String]

one or more digit chars

one or more digit chars

val digits0: Parser0[String]

zero or more digit chars

zero or more digit chars

val jsonNumber: Parser[String]

A string matching the json specification for numbers. from: https://tools.ietf.org/html/rfc4627

A string matching the json specification for numbers. from: https://tools.ietf.org/html/rfc4627

A String of either 1 '0' or 1 non-zero digit followed by zero or more digits

A String of either 1 '0' or 1 non-zero digit followed by zero or more digits

val nonZeroDigit: Parser[Char]

a single base 10 digit excluding 0

a single base 10 digit excluding 0

val signedIntString: Parser[String]

A nonNegativeIntString possibly preceded by '-'

A nonNegativeIntString possibly preceded by '-'