evaluates true if all items in the list satisfy the condition
import std.traits : isIntegral; static assert (All!(isIntegral, int, long, short)); static assert (not (All!(isIntegral, int, float, short)));
See Implementation
evaluates true if all items in the list satisfy the condition