allSatisfyIterative

Undocumented in source.

Members

Manifest constants

allSatisfyIterative
enum allSatisfyIterative;
Undocumented in source.
allSatisfyIterative
enum allSatisfyIterative;
Undocumented in source.

Examples

import std.traits : isIntegral;

static assert( allSatisfyIterative!(isIntegral));
static assert( allSatisfyIterative!(isIntegral, int));
static assert(!allSatisfyIterative!(isIntegral, int, double));
static assert( allSatisfyIterative!(isIntegral, int, long));
static assert(!allSatisfyIterative!(isIntegral, string));

Meta