I\'ve been running into situations where I feel I\'m lacking a LINQ extension method which effectivelly checks if there is no match of the specified predicate in a collection. T
Even shorter version
static class LinqExtensions { public static bool None(this IEnumerable source, Func predicate) => !source.Any(predicate); }