Vector.opCast

自身を別の型のVectorへキャストしたものを返します.キャスト後の型は元のVectorと同じ次元である必要があります.

struct Vector(T, int Dimention)
const
CastType
opCast
(
CastType
)
()
if (
CastType.dimention == dimention
)
if (
__traits(isArithmetic, T) &&
Dimention > 0
)

Meta