Bytes class

バイト配列を表す不変オブジェクト。

署名:

export declare class Bytes 

メソッド

メソッド 修飾キー 説明
fromBase64String(base64) static 指定された Base64 文字列から新しい Bytes オブジェクトを作成し、バイトに変換します。
fromUint8Array(array) static 指定された Uint8Array から新しい Bytes オブジェクトを作成します。
isEqual(other) この Bytes オブジェクトが指定されたオブジェクトと等しい場合に true を返します。
toBase64() 基になるバイトを Base64 でエンコードされた文字列として返します。
toString() Bytes オブジェクトの文字列表現を返します。
toUint8Array() 基になるバイトを新しい Uint8Array で返します。

Bytes.fromBase64String()

指定された Base64 文字列から新しい Bytes オブジェクトを作成し、バイトに変換します。

署名:

static fromBase64String(base64: string): Bytes;

パラメータ

パラメータ 説明
base64 文字列 Bytes オブジェクトの作成に使用される Base64 文字列。

戻り値:

バイト

Bytes.fromUint8Array()

指定された Uint8Array から新しい Bytes オブジェクトを作成します。

署名:

static fromUint8Array(array: Uint8Array): Bytes;

パラメータ

パラメータ 説明
配列 uint8Array Bytes オブジェクトの作成に使用される Uint8Array。

戻り値:

バイト

Bytes.isEqual()

この Bytes オブジェクトが指定されたオブジェクトと等しい場合に true を返します。

署名:

isEqual(other: Bytes): boolean;

パラメータ

パラメータ 説明
その他 バイト 比較対象の Bytes オブジェクト。

戻り値:

ブール値

この Bytes オブジェクトが指定されたオブジェクトと等しい場合は true を返します。

Bytes.toBase64()

基になるバイトを Base64 でエンコードされた文字列として返します。

署名:

toBase64(): string;

戻り値:

文字列

Bytes オブジェクトから作成された Base64 エンコード文字列。

Bytes.toString()

Bytes オブジェクトの文字列表現を返します。

署名:

toString(): string;

戻り値:

文字列

Bytes オブジェクトの文字列表現。

Bytes.toUint8Array()

基になるバイトを新しい Uint8Array で返します。

署名:

toUint8Array(): Uint8Array;

戻り値:

uint8Array

Bytes オブジェクトから作成された Uint8Array。