Global
Location
-
Reference:
- Go.dll .NET, .NET Standard 2.0
- Go.fx Island
- Namespace: go.encoding.ascii85
- Platforms: .NET, .NET Standard 2.0, Island
Methods
Decode
class method Decode(dst: Slice<Byte>; src: Slice<Byte>; flush: bool): tuple of (ndst: Int64, nsrc: Int64, err: error)
static (Int64 ndst, Int64 nsrc, error err) Decode(Slice<Byte> dst, Slice<Byte> src, bool flush)
static func Decode(_ dst: Slice<Byte>, _ src: Slice<Byte>, _ flush: bool) -> tuple of (Int64, Int64, error)
func Decode(dst Slice<Byte>, src Slice<Byte>, flush bool) tuple of (|name=ndst| Int64, |name=nsrc| Int64, |name=err| error)
Shared Function Decode(dst As Slice<Byte>, src As Slice<Byte>, flush As bool) As Tuple (Of Int64, Int64, error)
Parameters:
- dst:
- src:
- flush:
Encode
class method Encode(dst: Slice<Byte>; src: Slice<Byte>): int
static int Encode(Slice<Byte> dst, Slice<Byte> src)
static func Encode(_ dst: Slice<Byte>, _ src: Slice<Byte>) -> int
func Encode(dst Slice<Byte>, src Slice<Byte>) int
Shared Function Encode(dst As Slice<Byte>, src As Slice<Byte>) As int
Parameters:
- dst:
- src:
MaxEncodedLen
class method MaxEncodedLen(n: int): int
static int MaxEncodedLen(int n)
static func MaxEncodedLen(_ n: int) -> int
func MaxEncodedLen(n int) int
Shared Function MaxEncodedLen(n As int) As int
Parameters:
- n:
NewDecoder
class method NewDecoder(r: Reader): Reader
static Reader NewDecoder(Reader r)
static func NewDecoder(_ r: Reader) -> Reader
func NewDecoder(r Reader) Reader
Shared Function NewDecoder(r As Reader) As Reader
Parameters:
- r:
NewEncoder
class method NewEncoder(w: Writer): WriteCloser
static WriteCloser NewEncoder(Writer w)
static func NewEncoder(_ w: Writer) -> WriteCloser
func NewEncoder(w Writer) WriteCloser
Shared Function NewEncoder(w As Writer) As WriteCloser
Parameters:
- w: