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 Transformer

    Definition Classes
    spac
  • BoundHandler
  • Handler
  • HandlerLinkage
  • HandlerWrite
  • Stateless
  • TransformerKVParsingOps
  • TransformerParsingOps
c

io.dylemma.spac.Transformer

TransformerParsingOps

implicit final class TransformerParsingOps[In, A] extends AnyVal

Extra transformer methods that had to be defined separately from the trait due to either In or Out needing to be invariant.

Source
Transformer.scala
Linear Supertypes
AnyVal, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. TransformerParsingOps
  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 TransformerParsingOps(self: Transformer[In, 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 TransformerParsingOps[In, A] toany2stringadd[TransformerParsingOps[In, A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (TransformerParsingOps[In, A], B)
    Implicit
    This member is added by an implicit conversion from TransformerParsingOps[In, A] toArrowAssoc[TransformerParsingOps[In, A]] 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: (TransformerParsingOps[In, A]) => Boolean, msg: => Any): TransformerParsingOps[In, A]
    Implicit
    This member is added by an implicit conversion from TransformerParsingOps[In, A] toEnsuring[TransformerParsingOps[In, A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (TransformerParsingOps[In, A]) => Boolean): TransformerParsingOps[In, A]
    Implicit
    This member is added by an implicit conversion from TransformerParsingOps[In, A] toEnsuring[TransformerParsingOps[In, A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: => Any): TransformerParsingOps[In, A]
    Implicit
    This member is added by an implicit conversion from TransformerParsingOps[In, A] toEnsuring[TransformerParsingOps[In, A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): TransformerParsingOps[In, A]
    Implicit
    This member is added by an implicit conversion from TransformerParsingOps[In, A] toEnsuring[TransformerParsingOps[In, A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from TransformerParsingOps[In, A] toStringFormat[TransformerParsingOps[In, A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  12. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def parseFirst(implicit A: TypeName[A]): Parser[In, A]

    Convenience for this into Parser.first

  15. def toString(): String
    Definition Classes
    Any

Deprecated Value Members

  1. def [B](y: B): (TransformerParsingOps[In, A], B)
    Implicit
    This member is added by an implicit conversion from TransformerParsingOps[In, A] toArrowAssoc[TransformerParsingOps[In, A]] 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 fromTransformerParsingOps[In, A] to any2stringadd[TransformerParsingOps[In, A]]

Inherited by implicit conversion StringFormat fromTransformerParsingOps[In, A] to StringFormat[TransformerParsingOps[In, A]]

Inherited by implicit conversion Ensuring fromTransformerParsingOps[In, A] to Ensuring[TransformerParsingOps[In, A]]

Inherited by implicit conversion ArrowAssoc fromTransformerParsingOps[In, A] to ArrowAssoc[TransformerParsingOps[In, A]]

parse

Ungrouped