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.
Members
keyfield
public K keyThe key identifying this group.
valuesfield
public Array<V> valuesThe group elements in an ordinary shared array.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.
constructorconstructor
public constructor ()Provided by the compiler.