Allows forbidden casts.
The output type.
The input type, optional, likely to be infered.
A reference to an IT.
the same as cast(OT) it, except that it never fails to compile.
static immutable array = [0u,1u,2u]; size_t len; //len = cast(uint) array; // not allowed. len = bruteCast!uint(array); assert(len == array.length);
See Implementation
Allows forbidden casts.