Reader
Overview
Location
-
Reference:
- Go.dll .NET, .NET Standard 2.0
- Go.fx Island
- Namespace: go.bufio
- Platforms: .NET, .NET Standard 2.0, Island
Instance Methods
constructor
constructor
Reader()
init()
Sub New()
// .NET, .NET Standard 2.0
constructor(abuf: Slice<Byte>; ard: Reader; ar: Int64; aw: Int64; aerr: error; alastByte: Int64; alastRuneSize: Int64)
// Island
constructor(abuf: Slice<Byte>; ard: Reader; ar: int; aw: int; aerr: error; alastByte: int; alastRuneSize: int)
// .NET, .NET Standard 2.0
Reader(Slice<Byte> abuf, Reader ard, Int64 ar, Int64 aw, error aerr, Int64 alastByte, Int64 alastRuneSize)
// Island
Reader(Slice<Byte> abuf, Reader ard, int ar, int aw, error aerr, int alastByte, int alastRuneSize)
// .NET, .NET Standard 2.0
init(_ abuf: Slice<Byte>, _ ard: Reader, _ ar: Int64, _ aw: Int64, _ aerr: error, _ alastByte: Int64, _ alastRuneSize: Int64)
// Island
init(_ abuf: Slice<Byte>, _ ard: Reader, _ ar: int, _ aw: int, _ aerr: error, _ alastByte: int, _ alastRuneSize: int)
// .NET, .NET Standard 2.0
Sub New(abuf As Slice<Byte>, ard As Reader, ar As Int64, aw As Int64, aerr As error, alastByte As Int64, alastRuneSize As Int64)
// Island
Sub New(abuf As Slice<Byte>, ard As Reader, ar As int, aw As int, aerr As error, alastByte As int, alastRuneSize As int)
Parameters:
- abuf:
- ard:
- ar:
- aw:
- aerr:
- alastByte:
- alastRuneSize:
constructor (Reader)
constructor(value: Reader)
Reader(Reader value)
init(_ value: Reader)
Sub New(value As Reader)
Parameters:
- value:
method Peek(n: int): tuple of (Slice<Byte>, error)
(Slice<Byte>, error) Peek(int n)
func Peek(_ n: int) -> tuple of (Slice<Byte>, error)
func Peek(n int) tuple of (Slice<Byte>, error)
Function Peek(n As int) As Tuple (Of Slice<Byte>, error)
Parameters:
- n:
method Read(p: Slice<Byte>): tuple of (n: Int64, err: error)
(Int64 n, error err) Read(Slice<Byte> p)
func Read(_ p: Slice<Byte>) -> tuple of (Int64, error)
func Read(p Slice<Byte>) tuple of (|name=n| Int64, |name=err| error)
Function Read(p As Slice<Byte>) As Tuple (Of Int64, error)
Parameters:
- p:
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)