show/hide this revision's text 2 added 22 characters in body

One thing that's little known is that unions can be templates too:

template<typename From, typename To>
union union_cast {
    From from;
    To   to;

    union_cast(From from, To to)
        :from(from), to(tofrom(from) { }

    To getTo() const { return to; }
};

And they can have constructors and member functions too. Just nothing that has to do with inheritance (including virtual functions).

    Post Made Community Wiki by Community
show/hide this revision's text 1

One thing that's little known is that unions can be templates too:

template<typename From, typename To>
union union_cast {
    From from;
    To   to;

    union_cast(From from, To to)
        :from(from), to(to) { }
};

And they can have constructors and member functions too. Just nothing that has to do with inheritance (including virtual functions).