Union3Methods<A, B, C> extension

The methods on Union3.

on

Methods

join<T>(T first(A value), T second(B value), T third(C value)) → T
Transform all the potential types that value can take into a single unique type.
map<A2, B2, C2>(A2 first(A value), B2 second(B value), C2 third(C value)) Union3<A2, B2, C2>
Transforms a union into another union of potentially different types.
switchCase(void first(A value)?, void second(B value)?, void third(C value)?) → void
Allow executing custom logic based on the value type in a type safe way.