← Standard library

Group

struct Group<K, V>
import Group from Wax;

A grouping key paired with an array of values. The values array is retained by reference rather than copied or made immutable.

Group.wax:7

Members

keyfield

public K key

The key identifying this group.

Group.wax:11

valuesfield

public Array<V> values

The group elements in an ordinary shared array.

Group.wax:15

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.

constructorconstructor

public constructor ()

Provided by the compiler.