package high
High-level representation and tools for CBOR data streams.
The high-level representation is less powerful as the low-level one, as it builds
structured data. For instance it is not able to represent arrays of strings whose size
is bigger than Int.MaxValue
.
The reprensentation is intended to be easier to work with if you need more structured data and don't exceed the underlying limits.
- Source
- package.scala
- Alphabetic
- By Inheritance
- high
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def parseValues[F[_]](implicit F: RaiseThrowable[F]): Pipe[F, CborItem, CborValue]
Parses the stream of low-level items into high level AST.
- def toBinary[F[_]]: Pipe[F, CborValue, Byte]
Transforms a stream of CBOR values into the binary representations.
Transforms a stream of CBOR values into the binary representations.
This encoder, uses some tags defined in Tags to encode some values (e.g. big numbers).
- def toItems[F[_]]: Pipe[F, CborValue, CborItem]
Transforms a stream of CBOR values into a stream of low-level items.
Transforms a stream of CBOR values into a stream of low-level items.
This encoder, uses some tags defined in Tags to encode some values (e.g. big numbers).
- def values[F[_]](implicit F: RaiseThrowable[F]): Pipe[F, Byte, CborValue]
Parses the stream of bytes into high level AST.
- object CborValue