AltValue

A value that may contain two different type values. Similar to a union except they're not combined data.

struct AltValue (
T1
T2
) {}

Members

Variables

value1
T1 value1;

The first value.

value2
T2 value2;

The second value.

Meta