Packages

object MiscParsers extends MiscParsers

Linear Supertypes
MiscParsers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MiscParsers
  2. MiscParsers
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def catchNFE[A, B](f: (A) => B): (A) => Parser[B]

    Catch a NumberFormatException, useful for flatMap.

    Catch a NumberFormatException, useful for flatMap.

    Definition Classes
    MiscParsers
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. val colon: Parser[Unit]

    Parser for a colon.

    Parser for a colon.

    Definition Classes
    MiscParsers
  8. val dot: Parser[Unit]

    Parser for a dot/period/decimal point.

    Parser for a dot/period/decimal point.

    Definition Classes
    MiscParsers
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. val force: Parser[String]

    Force and return all remaining input without consuming it.

    Force and return all remaining input without consuming it.

    Definition Classes
    MiscParsers
  13. def frac(n: Int): Parser[Int]

    Fractional portion of a decimal value, with up to N places given.

    Fractional portion of a decimal value, with up to N places given. So frac(3) parsing "12" yields 120. Mind the overflow, this only works for small N.

    Definition Classes
    MiscParsers
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. val hyphen: Parser[Unit]

    Parser for a hyphen.

    Parser for a hyphen.

    Definition Classes
    MiscParsers
  17. val index: Parser[Index]

    Parser for an Index, which must be a positive Short with no leading zeros.

    Parser for an Index, which must be a positive Short with no leading zeros.

    Definition Classes
    MiscParsers
  18. def intN(n: Int): Parser[Int]

    Parser for n consecutive digits, parsed as an Int.

    Parser for n consecutive digits, parsed as an Int.

    Definition Classes
    MiscParsers
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. val neg: Parser[Boolean]

    Parser for an optional sign (+ or -), returned as a boolean indicating whether to negate.

    Parser for an optional sign (+ or -), returned as a boolean indicating whether to negate.

    Definition Classes
    MiscParsers
  22. val nonWhitespace: Parser[String]

    Parser for a non-whitespace string.

    Parser for a non-whitespace string.

    Definition Classes
    MiscParsers
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. val positiveInt: Parser[Int]

    Parser for a positive Int.

    Parser for a positive Int.

    Definition Classes
    MiscParsers
  26. val space: Parser[Unit]

    Parser for a single space.

    Parser for a single space.

    Definition Classes
    MiscParsers
  27. val spaces1: Parser[Unit]

    Parser for one or more spaces.

    Parser for one or more spaces.

    Definition Classes
    MiscParsers
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def takeUntilLast(p: (Char) => Boolean): Parser[String]

    Force and examine remaining input and yield the longest prefix up to (but not including) a char satisfying p, which is discarded.

    Force and examine remaining input and yield the longest prefix up to (but not including) a char satisfying p, which is discarded. Fails if no such char is found.

    Definition Classes
    MiscParsers
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. val verticalWhitespace: Parser[Unit]

    Parser for a vertical whitespace String.

    Parser for a vertical whitespace String.

    Definition Classes
    MiscParsers
  32. val void: Parser[Unit]

    Parser that always succeeds without consuming any input.

    Parser that always succeeds without consuming any input.

    Definition Classes
    MiscParsers
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from MiscParsers

Inherited from AnyRef

Inherited from Any

Ungrouped