org.saddle.io.npy

Members list

Concise view

Type members

Classlikes

case object ByteType extends DType[Byte]

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait DType[Byte]
class Object
trait Matchable
class Any
Self type
sealed trait DType[T]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object ByteType.type
object DoubleType.type
object FloatType.type
object IntType.type
object LongType.type
case class Descriptor(fortran: Boolean, shape: List[Long], dtype: String)

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case object DoubleType extends DType[Double]

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait DType[Double]
class Object
trait Matchable
class Any
Self type
case object FloatType extends DType[Float]

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait DType[Float]
class Object
trait Matchable
class Any
Self type
case object IntType extends DType[Int]

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait DType[Int]
class Object
trait Matchable
class Any
Self type
IntType.type
case object LongType extends DType[Long]

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait DType[Long]
class Object
trait Matchable
class Any
Self type

Value members

Concrete methods

def parse[T](tpe: DType[T], size: Int, from: ByteBuffer): Either[String, Array[T]]
def parseHeader(s: String): Descriptor
def readDataFromChannel[T](tpe: DType[T], channel: ReadableByteChannel, len: Long): Iterator[Either[String, Array[T]]]
def readFromChannel[T](dtype: DType[T], channel: ReadableByteChannel): Either[String, (Descriptor, Iterator[Either[String, Array[T]]])]
def readHeaderFromChannel(channel: ReadableByteChannel): Either[String, Descriptor]