Negates predicate pred.
A string or a callable
A function which calls pred and returns the logical negation of its return value.
import std.algorithm.searching : find; import std.uni : isWhite; string a = " Hello, world!"; assert(find!(not!isWhite)(a) == "Hello, world!");
See Implementation
Negates predicate pred.