Form

Overview

Location

 

constructor

 

constructor

 

Form()

 

init()

 

Sub New()

constructor (Int64)

 

// .NET, .NET Standard 2.0
constructor(aValue: Int64)
// Island
constructor(aValue: int)

 

// .NET, .NET Standard 2.0
Form(Int64 aValue)
// Island
Form(int aValue)

 

// .NET, .NET Standard 2.0
init(_ aValue: Int64)
// Island
init(_ aValue: int)

 

// .NET, .NET Standard 2.0
Sub New(aValue As Int64)
// Island
Sub New(aValue As int)

Parameters:

  • aValue:

Append

 

method Append(out: Slice<Byte>; params src: array of byte): Slice<Byte>

 

Slice<Byte> Append(Slice<Byte> out, params byte[] src)

 

func Append(_ out: Slice<Byte>, _ src: byte...) -> Slice<Byte>

 

func Append(out Slice<Byte>, src []byte) Slice<Byte>

 

Function Append(out As Slice<Byte>, ParamArray src As byte()) As Slice<Byte>

Parameters:

  • out:
  • src:

AppendString

 

method AppendString(out: Slice<Byte>; src: string): Slice<Byte>

 

Slice<Byte> AppendString(Slice<Byte> out, string src)

 

func AppendString(_ out: Slice<Byte>, _ src: string) -> Slice<Byte>

 

func AppendString(out Slice<Byte>, src string) Slice<Byte>

 

Function AppendString(out As Slice<Byte>, src As string) As Slice<Byte>

Parameters:

  • out:
  • src:

Bytes

 

method Bytes(b: Slice<Byte>): Slice<Byte>

 

Slice<Byte> Bytes(Slice<Byte> b)

 

func Bytes(_ b: Slice<Byte>) -> Slice<Byte>

 

func Bytes(b Slice<Byte>) Slice<Byte>

 

Function Bytes(b As Slice<Byte>) As Slice<Byte>

Parameters:

  • b:

Equals  override virtual

 

method Equals(value: Object): Boolean

 

Boolean Equals(Object value)

 

func Equals(_ value: Object) -> Boolean

 

func Equals(value interface{}) Boolean

 

Function Equals(value As Object) As Boolean

Parameters:

  • value:

FirstBoundary

 

method FirstBoundary(b: Slice<Byte>): int

 

int FirstBoundary(Slice<Byte> b)

 

func FirstBoundary(_ b: Slice<Byte>) -> int

 

func FirstBoundary(b Slice<Byte>) int

 

Function FirstBoundary(b As Slice<Byte>) As int

Parameters:

  • b:

FirstBoundaryInString

 

method FirstBoundaryInString(s: string): int

 

int FirstBoundaryInString(string s)

 

func FirstBoundaryInString(_ s: string) -> int

 

func FirstBoundaryInString(s string) int

 

Function FirstBoundaryInString(s As string) As int

Parameters:

  • s:

GetHashCode  override virtual

 

method GetHashCode: Int32

 

Int32 GetHashCode()

 

func GetHashCode() -> Int32

 

func GetHashCode() Int32

 

Function GetHashCode() As Int32

IsNormal

 

method IsNormal(b: Slice<Byte>): bool

 

bool IsNormal(Slice<Byte> b)

 

func IsNormal(_ b: Slice<Byte>) -> bool

 

func IsNormal(b Slice<Byte>) bool

 

Function IsNormal(b As Slice<Byte>) As bool

Parameters:

  • b:

IsNormalString

 

method IsNormalString(s: string): bool

 

bool IsNormalString(string s)

 

func IsNormalString(_ s: string) -> bool

 

func IsNormalString(s string) bool

 

Function IsNormalString(s As string) As bool

Parameters:

  • s:

LastBoundary

 

method LastBoundary(b: Slice<Byte>): int

 

int LastBoundary(Slice<Byte> b)

 

func LastBoundary(_ b: Slice<Byte>) -> int

 

func LastBoundary(b Slice<Byte>) int

 

Function LastBoundary(b As Slice<Byte>) As int

Parameters:

  • b:

NextBoundary

 

method NextBoundary(b: Slice<Byte>; atEOF: bool): int

 

int NextBoundary(Slice<Byte> b, bool atEOF)

 

func NextBoundary(_ b: Slice<Byte>, _ atEOF: bool) -> int

 

func NextBoundary(b Slice<Byte>, atEOF bool) int

 

Function NextBoundary(b As Slice<Byte>, atEOF As bool) As int

Parameters:

  • b:
  • atEOF:

NextBoundaryInString

 

method NextBoundaryInString(s: string; atEOF: bool): int

 

int NextBoundaryInString(string s, bool atEOF)

 

func NextBoundaryInString(_ s: string, _ atEOF: bool) -> int

 

func NextBoundaryInString(s string, atEOF bool) int

 

Function NextBoundaryInString(s As string, atEOF As bool) As int

Parameters:

  • s:
  • atEOF:

Properties

 

method Properties(s: Slice<Byte>): Properties

 

Properties Properties(Slice<Byte> s)

 

func Properties(_ s: Slice<Byte>) -> Properties

 

func Properties(s Slice<Byte>) Properties

 

Function Properties(s As Slice<Byte>) As Properties

Parameters:

  • s:

PropertiesString

 

method PropertiesString(s: string): Properties

 

Properties PropertiesString(string s)

 

func PropertiesString(_ s: string) -> Properties

 

func PropertiesString(s string) Properties

 

Function PropertiesString(s As string) As Properties

Parameters:

  • s:

QuickSpan

 

method QuickSpan(b: Slice<Byte>): int

 

int QuickSpan(Slice<Byte> b)

 

func QuickSpan(_ b: Slice<Byte>) -> int

 

func QuickSpan(b Slice<Byte>) int

 

Function QuickSpan(b As Slice<Byte>) As int

Parameters:

  • b:

QuickSpanString

 

method QuickSpanString(s: string): int

 

int QuickSpanString(string s)

 

func QuickSpanString(_ s: string) -> int

 

func QuickSpanString(s string) int

 

Function QuickSpanString(s As string) As int

Parameters:

  • s:

Reader

 

method Reader(r: Reader): Reader

 

Reader Reader(Reader r)

 

func Reader(_ r: Reader) -> Reader

 

func Reader(r Reader) Reader

 

Function Reader(r As Reader) As Reader

Parameters:

  • r:

Reset

 

method Reset

 

void Reset()

 

func Reset()

 

// .NET, .NET Standard 2.0
func Reset() 
// Island
func Reset() void

 

Sub Reset()

Span

 

method Span(b: Slice<Byte>; atEOF: bool): tuple of (n: Int64, err: error)

 

(Int64 n, error err) Span(Slice<Byte> b, bool atEOF)

 

func Span(_ b: Slice<Byte>, _ atEOF: bool) -> (Int64, error)

 

func Span(b Slice<Byte>, atEOF bool) tuple of (|name=n| Int64, |name=err| error)

 

Function Span(b As Slice<Byte>, atEOF As bool) As Tuple (Of Int64, error)

Parameters:

  • b:
  • atEOF:

SpanString

 

method SpanString(s: string; atEOF: bool): tuple of (n: Int64, err: error)

 

(Int64 n, error err) SpanString(string s, bool atEOF)

 

func SpanString(_ s: string, _ atEOF: bool) -> (Int64, error)

 

func SpanString(s string, atEOF bool) tuple of (|name=n| Int64, |name=err| error)

 

Function SpanString(s As string, atEOF As bool) As Tuple (Of Int64, error)

Parameters:

  • s:
  • atEOF:

String

 

method String(s: string): string

 

string String(string s)

 

func String(_ s: string) -> string

 

func String(s string) string

 

Function String(s As string) As string

Parameters:

  • s:

Transform

 

method Transform(dst: Slice<Byte>; src: Slice<Byte>; atEOF: bool): tuple of (nDst: Int64, nSrc: Int64, err: error)

 

(Int64 nDst, Int64 nSrc, error err) Transform(Slice<Byte> dst, Slice<Byte> src, bool atEOF)

 

func Transform(_ dst: Slice<Byte>, _ src: Slice<Byte>, _ atEOF: bool) -> (Int64, Int64, error)

 

func Transform(dst Slice<Byte>, src Slice<Byte>, atEOF bool) tuple of (|name=nDst| Int64, |name=nSrc| Int64, |name=err| error)

 

Function Transform(dst As Slice<Byte>, src As Slice<Byte>, atEOF As bool) As Tuple (Of Int64, Int64, error)

Parameters:

  • dst:
  • src:
  • atEOF:

Value

 

var Value: int;

 

int Value

 

var Value: int

 

Value int

 

FIELD Value() As int

Writer

 

method Writer(w: Writer): WriteCloser

 

WriteCloser Writer(Writer w)

 

func Writer(_ w: Writer) -> WriteCloser

 

func Writer(w Writer) WriteCloser

 

Function Writer(w As Writer) As WriteCloser

Parameters:

  • w:

 

Value

 

var Value: int;

 

int Value

 

var Value: int

 

Value int

 

FIELD Value() As int

 

constructor

 

constructor

 

Form()

 

init()

 

Sub New()

constructor (Int64)

 

// .NET, .NET Standard 2.0
constructor(aValue: Int64)
// Island
constructor(aValue: int)

 

// .NET, .NET Standard 2.0
Form(Int64 aValue)
// Island
Form(int aValue)

 

// .NET, .NET Standard 2.0
init(_ aValue: Int64)
// Island
init(_ aValue: int)

 

// .NET, .NET Standard 2.0
Sub New(aValue As Int64)
// Island
Sub New(aValue As int)

Parameters:

  • aValue:

Append

 

method Append(out: Slice<Byte>; params src: array of byte): Slice<Byte>

 

Slice<Byte> Append(Slice<Byte> out, params byte[] src)

 

func Append(_ out: Slice<Byte>, _ src: byte...) -> Slice<Byte>

 

func Append(out Slice<Byte>, src []byte) Slice<Byte>

 

Function Append(out As Slice<Byte>, ParamArray src As byte()) As Slice<Byte>

Parameters:

  • out:
  • src:

AppendString

 

method AppendString(out: Slice<Byte>; src: string): Slice<Byte>

 

Slice<Byte> AppendString(Slice<Byte> out, string src)

 

func AppendString(_ out: Slice<Byte>, _ src: string) -> Slice<Byte>

 

func AppendString(out Slice<Byte>, src string) Slice<Byte>

 

Function AppendString(out As Slice<Byte>, src As string) As Slice<Byte>

Parameters:

  • out:
  • src:

Bytes

 

method Bytes(b: Slice<Byte>): Slice<Byte>

 

Slice<Byte> Bytes(Slice<Byte> b)

 

func Bytes(_ b: Slice<Byte>) -> Slice<Byte>

 

func Bytes(b Slice<Byte>) Slice<Byte>

 

Function Bytes(b As Slice<Byte>) As Slice<Byte>

Parameters:

  • b:

Equals  override virtual

 

method Equals(value: Object): Boolean

 

Boolean Equals(Object value)

 

func Equals(_ value: Object) -> Boolean

 

func Equals(value interface{}) Boolean

 

Function Equals(value As Object) As Boolean

Parameters:

  • value:

FirstBoundary

 

method FirstBoundary(b: Slice<Byte>): int

 

int FirstBoundary(Slice<Byte> b)

 

func FirstBoundary(_ b: Slice<Byte>) -> int

 

func FirstBoundary(b Slice<Byte>) int

 

Function FirstBoundary(b As Slice<Byte>) As int

Parameters:

  • b:

FirstBoundaryInString

 

method FirstBoundaryInString(s: string): int

 

int FirstBoundaryInString(string s)

 

func FirstBoundaryInString(_ s: string) -> int

 

func FirstBoundaryInString(s string) int

 

Function FirstBoundaryInString(s As string) As int

Parameters:

  • s:

GetHashCode  override virtual

 

method GetHashCode: Int32

 

Int32 GetHashCode()

 

func GetHashCode() -> Int32

 

func GetHashCode() Int32

 

Function GetHashCode() As Int32

IsNormal

 

method IsNormal(b: Slice<Byte>): bool

 

bool IsNormal(Slice<Byte> b)

 

func IsNormal(_ b: Slice<Byte>) -> bool

 

func IsNormal(b Slice<Byte>) bool

 

Function IsNormal(b As Slice<Byte>) As bool

Parameters:

  • b:

IsNormalString

 

method IsNormalString(s: string): bool

 

bool IsNormalString(string s)

 

func IsNormalString(_ s: string) -> bool

 

func IsNormalString(s string) bool

 

Function IsNormalString(s As string) As bool

Parameters:

  • s:

LastBoundary

 

method LastBoundary(b: Slice<Byte>): int

 

int LastBoundary(Slice<Byte> b)

 

func LastBoundary(_ b: Slice<Byte>) -> int

 

func LastBoundary(b Slice<Byte>) int

 

Function LastBoundary(b As Slice<Byte>) As int

Parameters:

  • b:

NextBoundary

 

method NextBoundary(b: Slice<Byte>; atEOF: bool): int

 

int NextBoundary(Slice<Byte> b, bool atEOF)

 

func NextBoundary(_ b: Slice<Byte>, _ atEOF: bool) -> int

 

func NextBoundary(b Slice<Byte>, atEOF bool) int

 

Function NextBoundary(b As Slice<Byte>, atEOF As bool) As int

Parameters:

  • b:
  • atEOF:

NextBoundaryInString

 

method NextBoundaryInString(s: string; atEOF: bool): int

 

int NextBoundaryInString(string s, bool atEOF)

 

func NextBoundaryInString(_ s: string, _ atEOF: bool) -> int

 

func NextBoundaryInString(s string, atEOF bool) int

 

Function NextBoundaryInString(s As string, atEOF As bool) As int

Parameters:

  • s:
  • atEOF:

Properties

 

method Properties(s: Slice<Byte>): Properties

 

Properties Properties(Slice<Byte> s)

 

func Properties(_ s: Slice<Byte>) -> Properties

 

func Properties(s Slice<Byte>) Properties

 

Function Properties(s As Slice<Byte>) As Properties

Parameters:

  • s:

PropertiesString

 

method PropertiesString(s: string): Properties

 

Properties PropertiesString(string s)

 

func PropertiesString(_ s: string) -> Properties

 

func PropertiesString(s string) Properties

 

Function PropertiesString(s As string) As Properties

Parameters:

  • s:

QuickSpan

 

method QuickSpan(b: Slice<Byte>): int

 

int QuickSpan(Slice<Byte> b)

 

func QuickSpan(_ b: Slice<Byte>) -> int

 

func QuickSpan(b Slice<Byte>) int

 

Function QuickSpan(b As Slice<Byte>) As int

Parameters:

  • b:

QuickSpanString

 

method QuickSpanString(s: string): int

 

int QuickSpanString(string s)

 

func QuickSpanString(_ s: string) -> int

 

func QuickSpanString(s string) int

 

Function QuickSpanString(s As string) As int

Parameters:

  • s:

Reader

 

method Reader(r: Reader): Reader

 

Reader Reader(Reader r)

 

func Reader(_ r: Reader) -> Reader

 

func Reader(r Reader) Reader

 

Function Reader(r As Reader) As Reader

Parameters:

  • r:

Reset

 

method Reset

 

void Reset()

 

func Reset()

 

// .NET, .NET Standard 2.0
func Reset() 
// Island
func Reset() void

 

Sub Reset()

Span

 

method Span(b: Slice<Byte>; atEOF: bool): tuple of (n: Int64, err: error)

 

(Int64 n, error err) Span(Slice<Byte> b, bool atEOF)

 

func Span(_ b: Slice<Byte>, _ atEOF: bool) -> (Int64, error)

 

func Span(b Slice<Byte>, atEOF bool) tuple of (|name=n| Int64, |name=err| error)

 

Function Span(b As Slice<Byte>, atEOF As bool) As Tuple (Of Int64, error)

Parameters:

  • b:
  • atEOF:

SpanString

 

method SpanString(s: string; atEOF: bool): tuple of (n: Int64, err: error)

 

(Int64 n, error err) SpanString(string s, bool atEOF)

 

func SpanString(_ s: string, _ atEOF: bool) -> (Int64, error)

 

func SpanString(s string, atEOF bool) tuple of (|name=n| Int64, |name=err| error)

 

Function SpanString(s As string, atEOF As bool) As Tuple (Of Int64, error)

Parameters:

  • s:
  • atEOF:

String

 

method String(s: string): string

 

string String(string s)

 

func String(_ s: string) -> string

 

func String(s string) string

 

Function String(s As string) As string

Parameters:

  • s:

Transform

 

method Transform(dst: Slice<Byte>; src: Slice<Byte>; atEOF: bool): tuple of (nDst: Int64, nSrc: Int64, err: error)

 

(Int64 nDst, Int64 nSrc, error err) Transform(Slice<Byte> dst, Slice<Byte> src, bool atEOF)

 

func Transform(_ dst: Slice<Byte>, _ src: Slice<Byte>, _ atEOF: bool) -> (Int64, Int64, error)

 

func Transform(dst Slice<Byte>, src Slice<Byte>, atEOF bool) tuple of (|name=nDst| Int64, |name=nSrc| Int64, |name=err| error)

 

Function Transform(dst As Slice<Byte>, src As Slice<Byte>, atEOF As bool) As Tuple (Of Int64, Int64, error)

Parameters:

  • dst:
  • src:
  • atEOF:

Writer

 

method Writer(w: Writer): WriteCloser

 

WriteCloser Writer(Writer w)

 

func Writer(_ w: Writer) -> WriteCloser

 

func Writer(w Writer) WriteCloser

 

Function Writer(w As Writer) As WriteCloser

Parameters:

  • w: