Tabular

me.mnedokushev.zio.apache.arrow.core.Tabular
object Tabular

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Tabular.type

Members list

Value members

Concrete methods

def empty[A](implicit schema: Schema[A]): RIO[Scope & BufferAllocator, VectorSchemaRoot]
def fromChunk[A](chunk: Chunk[A])(implicit schema: Schema[A], encoder: VectorSchemaRootEncoder[A]): RIO[Scope & BufferAllocator, VectorSchemaRoot]
def fromStream[R, A](stream: ZStream[R, Throwable, A])(implicit schema: Schema[A], encoder: VectorSchemaRootEncoder[A]): RIO[R & Scope & BufferAllocator, VectorSchemaRoot]
def toChunk[A](root: VectorSchemaRoot)(implicit decoder: VectorSchemaRootDecoder[A]): Task[Chunk[A]]
def toStream[A](root: VectorSchemaRoot)(implicit decoder: VectorSchemaRootDecoder[A]): ZStream[Any, Throwable, A]