Reader

Overview

Location

  • Reference:
    • Go.dll  .NET, .NET Standard 2.0
    • Go.fx  Island
  • Namespace: go.strings
  • Platforms: .NET, .NET Standard 2.0, Island


Instance Methods


constructor

 

constructor

 

Reader()

 

init()

 

Sub New()

constructor (string, int64, Int64)

 

// .NET, .NET Standard 2.0
constructor(as: string; ai: int64; aprevRune: Int64)
// Island
constructor(as: string; ai: int64; aprevRune: int)

 

// .NET, .NET Standard 2.0
Reader(string as, int64 ai, Int64 aprevRune)
// Island
Reader(string as, int64 ai, int aprevRune)

 

// .NET, .NET Standard 2.0
init(_ as: string, _ ai: int64, _ aprevRune: Int64)
// Island
init(_ as: string, _ ai: int64, _ aprevRune: int)

 

// .NET, .NET Standard 2.0
Sub New(as As string, ai As int64, aprevRune As Int64)
// Island
Sub New(as As string, 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:

Read (Slice<Byte>): tuple of (n: Int64, err: error) Island

 

method Read(b: Slice<Byte>): tuple of (n: Int64, err: error)

 

(Int64 n, error err) Read(Slice<Byte> b)

 

func Read(_ b: Slice<Byte>) -> (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:

ReadByte Island

 

method ReadByte: tuple of (Byte, error)

 

(Byte, error) ReadByte()

 

func ReadByte() -> (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