Skip to main content

CompactTypeVector

@midnight-ntwrk/compact-runtime v0.14.0


@midnight-ntwrk/compact-runtime / CompactTypeVector

Class: CompactTypeVector<A>

Runtime type of the builtin Vector types

Type Parameters

A

A

Implements

Constructors

Constructor

new CompactTypeVector<A>(length, type): CompactTypeVector<A>;

Parameters

length

number

type

CompactType<A>

Returns

CompactTypeVector<A>

Properties

length

readonly length: number;

type

readonly type: CompactType<A>;

Methods

alignment()

alignment(): Alignment;

The field-aligned binary alignment of this type.

Returns

Alignment

Implementation of

CompactType.alignment


fromValue()

fromValue(value): A[];

Converts this type's field-aligned binary representation to its TypeScript representation destructively; (partially) consuming the input, and ignoring superflous data for chaining.

Parameters

value

Value

Returns

A[]

Implementation of

CompactType.fromValue


toValue()

toValue(value): Value;

Converts this type's TypeScript representation to its field-aligned binary representation

Parameters

value

A[]

Returns

Value

Implementation of

CompactType.toValue