Packages

  • package root
    Definition Classes
    root
  • package io
    Definition Classes
    root
  • package dylemma
    Definition Classes
    io
  • package spac

    SPaC (short for "Streaming Parser Combinators") is a library for building stream consumers in a declarative style, specialized for tree-like data types like XML and JSON.

    SPaC (short for "Streaming Parser Combinators") is a library for building stream consumers in a declarative style, specialized for tree-like data types like XML and JSON.

    Many utilities for handling XML and JSON data involve parsing the entire "document" to some DOM model, then inspecting and transforming that model to extract information. The downside to these utilities is that when the document is very large, the DOM may not fit in memory. The workaround for this type of problem is to treat the document as a stream of "events", e.g. "StartElement" and "EndElement" for XML, or "StartObject" and "EndObject" for JSON. The downside to this workaround is that writing code to handle these streams can be complicated and error-prone, especially when the DOM is complicated.

    SPaC's goal is to drastically simplify the process of creating code to handle these streams.

    This package contains the "core" SPaC traits; Parser, Transformer, Splitter, and ContextMatcher.

    See the xml and json subpackages (provided by the xml-spac and json-spac libraries respectively) for specific utilities related to handling XML and JSON event streams.

    Definition Classes
    dylemma
  • object Parser

    Definition Classes
    spac
  • FollowedBy
  • Handler
  • ParserFlatten
  • ParserFollowedByOps
  • Stateless
c

io.dylemma.spac.Parser

ParserFlatten

implicit final class ParserFlatten[In, A, F[_]] extends AnyVal

Source
Parser.scala
Linear Supertypes
AnyVal, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. ParserFlatten
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ParserFlatten(parser: Parser[In, F[F[A]]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toany2stringadd[ParserFlatten[In, A, F]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ParserFlatten[In, A, F], B)
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toArrowAssoc[ParserFlatten[In, A, F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def ensuring(cond: (ParserFlatten[In, A, F]) => Boolean, msg: => Any): ParserFlatten[In, A, F]
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toEnsuring[ParserFlatten[In, A, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (ParserFlatten[In, A, F]) => Boolean): ParserFlatten[In, A, F]
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toEnsuring[ParserFlatten[In, A, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: => Any): ParserFlatten[In, A, F]
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toEnsuring[ParserFlatten[In, A, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): ParserFlatten[In, A, F]
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toEnsuring[ParserFlatten[In, A, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def flatten(implicit F: FlatMap[F]): Parser[In, F[A]]

    Convenience for .map(_.flatten), e.g.

    Convenience for .map(_.flatten), e.g. to simplify a Parser[In, Option[Option[Out]] to Parser[In, Option[Out]].

    Example:

    Splitter.json(...).asNullable[String].parseFirstOpt.flatten
    F

    A type constructor that can be flatMapped, such as Option or List

    returns

    A new Parser whose output type has been flattened

  12. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toStringFormat[ParserFlatten[In, A, F]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  13. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def toString(): String
    Definition Classes
    Any

Deprecated Value Members

  1. def [B](y: B): (ParserFlatten[In, A, F], B)
    Implicit
    This member is added by an implicit conversion from ParserFlatten[In, A, F] toArrowAssoc[ParserFlatten[In, A, F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd fromParserFlatten[In, A, F] to any2stringadd[ParserFlatten[In, A, F]]

Inherited by implicit conversion StringFormat fromParserFlatten[In, A, F] to StringFormat[ParserFlatten[In, A, F]]

Inherited by implicit conversion Ensuring fromParserFlatten[In, A, F] to Ensuring[ParserFlatten[In, A, F]]

Inherited by implicit conversion ArrowAssoc fromParserFlatten[In, A, F] to ArrowAssoc[ParserFlatten[In, A, F]]

combinators

Ungrouped