Vector.ok

struct Vector(E, uint D, bool normalizedFlag = false, Orient orient = Orient.column)
@property const
bool
ok
()
()
if (
D >= 1 &&
(
!normalizedFlag ||
isFloatingPoint!E
)
)

Return Value

Type: bool

true if all values are not nan nor infinite, otherwise false.

Meta