abstract class Buffer[A] extends AnyRef

Annotations
@specialized()
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Buffer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def array: IO[Exception, Array[A]]
    Attributes
    protected[zio.nio]
  2. abstract def asReadOnlyBuffer: IO[Nothing, Buffer[A]]
  3. abstract def compact: IO[ReadOnlyBufferException, Unit]
  4. abstract def duplicate: IO[Nothing, Buffer[A]]
  5. abstract def get(i: Int): IO[IndexOutOfBoundsException, A]
  6. abstract def get: IO[BufferUnderflowException, A]
  7. abstract def getChunk(maxLength: Int = Int.MaxValue): IO[BufferUnderflowException, Chunk[A]]
  8. abstract def order: ByteOrder
  9. abstract def put(index: Int, element: A): IO[Exception, Unit]
  10. abstract def put(element: A): IO[Exception, Unit]
  11. abstract def putChunk(chunk: Chunk[A]): IO[Exception, Unit]
  12. abstract def slice: IO[Nothing, Buffer[A]]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def capacity: Int
  6. final def clear: UIO[Unit]
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def flip: UIO[Unit]
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def hasArray: Boolean
  14. final def hasRemaining: UIO[Boolean]
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isDirect: Boolean
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def isReadOnly: Boolean
  19. final def limit(newLimit: Int): IO[Exception, Unit]
  20. final def limit: UIO[Int]
  21. final def mark: UIO[Unit]
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def position(newPosition: Int): IO[Exception, Unit]
  26. final def position: UIO[Int]
  27. final def remaining: UIO[Int]
  28. final def reset: IO[Exception, Unit]
  29. final def rewind: UIO[Unit]
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  35. final def withArray[R, E, B](noArray: ZIO[R, E, B])(hasArray: (Array[A], Int) ⇒ ZIO[R, E, B]): ZIO[R, E, B]

Inherited from AnyRef

Inherited from Any

Ungrouped