notNaN

Members

Functions

check
bool check(T actual)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

errorMessage
enum string errorMessage;
Undocumented in source.

Examples

assert(test!notNaN(1.0f));
assert(test!notNaN(-1.0f));

assert(test!notNaN(1.0));
assert(test!notNaN(-1.0));

enum float nan = 0f / 0f;
assert(!test!notNaN(nan));

Meta