Packages

package npy

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

Type Members

  1. sealed trait DType[T] extends AnyRef
  2. case class Descriptor(fortran: Boolean, shape: List[Long], dtype: String) extends Product with Serializable

Value Members

  1. def parse[T](tpe: DType[T], size: Int, from: ByteBuffer): Either[String, Array[T]]
  2. def parseHeader(s: String): Descriptor
  3. def readDataFromChannel[T](tpe: DType[T], channel: ReadableByteChannel, len: Long): Iterator[Either[String, Array[T]]]
  4. def readFromChannel[T](dtype: DType[T], channel: ReadableByteChannel): Either[String, (Descriptor, Iterator[Either[String, Array[T]]])]
  5. def readHeaderFromChannel(channel: ReadableByteChannel): Either[String, Descriptor]
  6. case object ByteType extends DType[Byte] with Product with Serializable
  7. case object DoubleType extends DType[Double] with Product with Serializable
  8. case object FloatType extends DType[Float] with Product with Serializable
  9. case object IntType extends DType[Int] with Product with Serializable
  10. case object LongType extends DType[Long] with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped