package dom
- Source
- package.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- dom
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- trait DocumentBuilder[Document] extends ElementBuilder
- trait DocumentEventifier[Document] extends AnyRef
- trait ElementBuilder extends AnyRef
- class TreeParser[F[_], Node] extends AnyRef
- class XmlTreeException extends Exception
Value Members
- def documents[F[_], Node](implicit F: RaiseThrowable[F], builder: DocumentBuilder[Node]): Pipe[F, XmlEvent, Node]
Transforms a stream of XML events into a stream of XML document trees.
- def elements[F[_], Elt](implicit F: RaiseThrowable[F], builder: Aux[Elt]): Pipe[F, XmlEvent, Elt]
Transforms a stream of XML events into a stream of XML elements trees.
Transforms a stream of XML events into a stream of XML elements trees.
This pipe will fail if the top-level events do not describe XML elements.
- def eventify[F[_], Node](implicit eventifier: DocumentEventifier[Node]): Pipe[F, Node, XmlEvent]
Transforms a stream of XML nodes into a stream of XML events.
- object DocumentBuilder
- object ElementBuilder