All

evaluates true if all items in the list satisfy the condition

Members

Manifest constants

All
enum All;
Undocumented in source.
All
enum All;
Undocumented in source.

Examples

import std.traits : isIntegral;

static assert (All!(isIntegral, int, long, short));
static assert (not (All!(isIntegral, int, float, short)));

Meta