Package

exemelle

Permalink

package exemelle

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

Type Members

  1. case class Attribute(name: String, value: String) extends Product with Serializable

    Permalink
  2. case class Comment(text: String) extends Elem with Product with Serializable

    Permalink
  3. sealed trait Elem extends AnyRef

    Permalink
  4. case class EndTag(name: String, text: String) extends Elem with Product with Serializable

    Permalink
  5. case class Other(eventType: Int, text: String) extends Elem with Product with Serializable

    Permalink
  6. case class StartDocument(text: String) extends Elem with Product with Serializable

    Permalink
  7. case class StartTag(name: String, attributes: List[Attribute], text: String) extends Elem with Product with Serializable

    Permalink
  8. type StreamAction[A] = Free[StreamOp, A]

    Permalink
  9. case class StreamError(message: String) extends Product with Serializable

    Permalink

    An XML error

  10. sealed trait StreamOp[A] extends AnyRef

    Permalink

    Primitive stream operations

  11. type StreamParser = FunctionK[StreamOp, [β$0$]Either[StreamError, β$0$]]

    Permalink
  12. case class Tag(elems: Vector[Elem]) extends Product with Serializable

    Permalink
  13. case class Text(text: String) extends Elem with Product with Serializable

    Permalink
  14. case class UnsafeStreamParser extends Product with Serializable

    Permalink

    An XML stream parser that iterates over the Elems in the underlying InputStream, so non of the public API is safe.

    An XML stream parser that iterates over the Elems in the underlying InputStream, so non of the public API is safe.

    Implementation similar to an Iterator but with a peek buffer of size 1.

Value Members

  1. object Next extends StreamOp[Option[Elem]] with Product with Serializable

    Permalink
  2. object Peek extends StreamOp[Option[Elem]] with Product with Serializable

    Permalink
  3. object StreamAction

    Permalink

    XML stream combinators

  4. object StreamParser

    Permalink

    StreamParser constructors

  5. object UnsafeStreamParser extends Serializable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped