Negates predicate pred.
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.