Reader
Overview
Location
-
Reference:
- Go.dll .NET, .NET Standard 2.0
- Go.fx Island
- Namespace: go.bytes
- Platforms: .NET, .NET Standard 2.0, Island
Instance Methods
constructor
constructor
Reader()
init()
Sub New()
// .NET, .NET Standard 2.0
constructor(as: Slice<Byte>; ai: int64; aprevRune: Int64)
// Island
constructor(as: Slice<Byte>; ai: int64; aprevRune: int)
// .NET, .NET Standard 2.0
Reader(Slice<Byte> as, int64 ai, Int64 aprevRune)
// Island
Reader(Slice<Byte> as, int64 ai, int aprevRune)
// .NET, .NET Standard 2.0
init(_ as: Slice<Byte>, _ ai: int64, _ aprevRune: Int64)
// Island
init(_ as: Slice<Byte>, _ ai: int64, _ aprevRune: int)
// .NET, .NET Standard 2.0
Sub New(as As Slice<Byte>, ai As int64, aprevRune As Int64)
// Island
Sub New(as As Slice<Byte>, ai As int64, aprevRune As int)
Parameters:
- as:
- ai:
- aprevRune:
constructor (Reader)
constructor(value: Reader)
Reader(Reader value)
init(_ value: Reader)
Sub New(value As Reader)
Parameters:
- value:
method Read(b: Slice<Byte>): tuple of (n: Int64, err: error)
(Int64 n, error err) Read(Slice<Byte> b)
func Read(_ b: Slice<Byte>) -> tuple of (Int64, error)
func Read(b Slice<Byte>) tuple of (|name=n| Int64, |name=err| error)
Function Read(b As Slice<Byte>) As Tuple (Of Int64, error)
Parameters:
- b:
method ReadAt(b: Slice<Byte>; off: int64): tuple of (n: Int64, err: error)
(Int64 n, error err) ReadAt(Slice<Byte> b, int64 off)
func ReadAt(_ b: Slice<Byte>, _ off: int64) -> tuple of (Int64, error)
func ReadAt(b Slice<Byte>, off int64) tuple of (|name=n| Int64, |name=err| error)
Function ReadAt(b As Slice<Byte>, off As int64) As Tuple (Of Int64, error)
Parameters:
- b:
- off:
ReadByte Island
method ReadByte: tuple of (Byte, error)
(Byte, error) ReadByte()
func ReadByte() -> tuple of (Byte, error)
func ReadByte() tuple of (Byte, error)
Function ReadByte() As Tuple (Of Byte, error)
UnreadByte Island
method UnreadByte: error
error UnreadByte()
func UnreadByte() -> error
func UnreadByte() error
Function UnreadByte() As error