Packages

  • package root

    This is the documentation for Parsley.

    This is the documentation for Parsley.

    Package structure

    The parsley package contains the Parsley class, as well as the Result, Success, and Failure types. In addition to these, it also contains the following packages and "modules" (a module is defined as being an object which mocks a package):

    • parsley.Parsley contains the bulk of the core "function-style" combinators.
    • parsley.combinator contains many helpful combinators that simplify some common parser patterns.
    • parsley.character contains the combinators needed to read characters and strings, as well as combinators to match specific sub-sets of characters.
    • parsley.debug contains debugging combinators, helpful for identifying faults in parsers.
    • parsley.extension contains syntactic sugar combinators exposed as implicit classes.
    • parsley.io contains extension methods to run parsers with input sourced from IO sources.
    • parsley.expr contains the following sub modules:
      • parsley.expr.chain contains combinators used in expression parsing
      • parsley.expr.precedence is a builder for expression parsers built on a precedence table.
      • parsley.expr.infix contains combinators used in expression parsing, but with more permissive types than their equivalents in chain.
      • parsley.expr.mixed contains combinators that can be used for expression parsing, but where different fixities may be mixed on the same level: this is rare in practice.
    • parsley.implicits contains several implicits to add syntactic sugar to the combinators. These are sub-categorised into the following sub modules:
      • parsley.implicits.character contains implicits to allow you to use character and string literals as parsers.
      • parsley.implicits.combinator contains implicits related to combinators, such as the ability to make any parser into a Parsley[Unit] automatically.
      • parsley.implicits.lift enables postfix application of the lift combinator onto a function (or value).
      • parsley.implicits.zipped enables boths a reversed form of lift where the function appears on the right and is applied on a tuple (useful when type inference has failed) as well as a .zipped method for building tuples out of several combinators.
    • parsley.errors contains modules to deal with error messages, their refinement and generation.
    • parsley.lift contains functions which lift functions that work on regular types to those which now combine the results of parsers returning those same types. these are ubiquitous.
    • parsley.ap contains functions which allow for the application of a parser returning a function to several parsers returning each of the argument types.
    • parsley.registers contains combinators that interact with the context-sensitive functionality in the form of registers.
    • parsley.token contains the Lexer class that provides a host of helpful lexing combinators when provided with the description of a language.
    • parsley.genericbridges contains some basic implementations of the Parser Bridge pattern (see Design Patterns for Parser Combinators in Scala, or the parsley wiki): these can be used before more specialised generic bridge traits can be constructed.
    Definition Classes
    root
  • package parsley
    Definition Classes
    root
  • package token

    This package provides a wealth of functionality for performing common lexing tasks.

    This package provides a wealth of functionality for performing common lexing tasks.

    It is organised as follows:

    • the main parsing functionality is accessed via Lexer, which provides implementations for the combinators found in the sub-packages given a LexicalDesc.
    • the descriptions sub-package is how a lexical structure can be described, providing the configuration that alters the behaviour of the parsers produced by the Lexer.
    • the other sub-packages contain the high-level interfaces that the Lexer exposes, which can be used to pass whitespace-aware and non-whitespace-aware combinators around in a uniform way.
    • the predicate module contains functionality to help define boolean predicates on characters or unicode codepoints.
    Definition Classes
    parsley
  • package numeric

    This package contains the abstract parsers for parsing numeric literals, like integers and reals.

    This package contains the abstract parsers for parsing numeric literals, like integers and reals.

    Definition Classes
    token
    Since

    4.0.0

  • CanHold
  • Combined
  • Integer
  • LowPriorityImplicits
  • Real

object CanHold extends LowPriorityImplicits

This object contains the definitions of several types that help enforce that parsers of bounded precision only return types that can losslessly accomodate that precision.

Note that, on the JVM, there is no such thing as an unsigned value natively. Instead, the JVM provides a guarantee that overflow is well-defined, and, as such supports operations that work on numbers as if they were unsigned. For this reason, parsley makes no distinction between unsigned and signed numbers.

Source
BitBounds.scala
Since

4.0.0

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

Type Members

  1. type can_hold_16_bits[T] = CanHold[_16.type, T]

    This type-constraint requires that the given type has enough bit-width to store 16 bits of data.

    This type-constraint requires that the given type has enough bit-width to store 16 bits of data.

    Annotations
    @implicitNotFound()
    Since

    4.0.0

  2. type can_hold_32_bits[T] = CanHold[_32.type, T]

    This type-constraint requires that the given type has enough bit-width to store 32 bits of data.

    This type-constraint requires that the given type has enough bit-width to store 32 bits of data.

    Annotations
    @implicitNotFound()
    Since

    4.0.0

  3. type can_hold_64_bits[T] = CanHold[_64.type, T]

    This type-constraint requires that the given type has enough bit-width to store 64 bits of data.

    This type-constraint requires that the given type has enough bit-width to store 64 bits of data.

    Annotations
    @implicitNotFound()
    Since

    4.0.0

  4. type can_hold_8_bits[T] = CanHold[_8.type, T]

    This type-constraint requires that the given type has enough bit-width to store 8 bits of data.

    This type-constraint requires that the given type has enough bit-width to store 8 bits of data.

    Annotations
    @implicitNotFound()
    Since

    4.0.0

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. implicit val big_64: can_hold_64_bits[BigInt]

    Evidence that BigInt can store (at least) 64 bits of data.

    Evidence that BigInt can store (at least) 64 bits of data.

    Definition Classes
    LowPriorityImplicits
    Since

    4.0.0

    Note

    long_64 is prioritised for implicit selection over this.

  6. implicit val byte_8: can_hold_8_bits[Byte]

    Evidence that Byte can store 8 bits of data.

    Evidence that Byte can store 8 bits of data.

    Since

    4.0.0

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. implicit def fits_16_32[T](implicit arg0: can_hold_32_bits[T]): can_hold_16_bits[T]

    Provides evidence that a type that can store 32 bits can also store 16 bits.

    Provides evidence that a type that can store 32 bits can also store 16 bits.

    Since

    4.0.0

  12. implicit def fits_32_64[T](implicit arg0: can_hold_64_bits[T]): can_hold_32_bits[T]

    Provides evidence that a type that can store 64 bits can also store 32 bits.

    Provides evidence that a type that can store 64 bits can also store 32 bits.

    Since

    4.0.0

  13. implicit def fits_8_16[T](implicit arg0: can_hold_16_bits[T]): can_hold_8_bits[T]

    Provides evidence that a type that can store 16 bits can also store 8 bits.

    Provides evidence that a type that can store 16 bits can also store 8 bits.

    Since

    4.0.0

  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. implicit val int_32: can_hold_32_bits[Int]

    Evidence that Int can store 32 bits of data.

    Evidence that Int can store 32 bits of data.

    Since

    4.0.0

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. implicit val long_64: can_hold_64_bits[Long]

    Evidence that Long can store 64 bits of data.

    Evidence that Long can store 64 bits of data.

    Since

    4.0.0

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. implicit val short_16: can_hold_16_bits[Short]

    Evidence that Short can store 16 bits of data.

    Evidence that Short can store 16 bits of data.

    Since

    4.0.0

  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from LowPriorityImplicits

Inherited from AnyRef

Inherited from Any

Ungrouped