public static bool Test <T, TPredicate>( List2D <T> list, TPredicate match) where TPredicate : struct, IPredicate <T> => list.Exists(match);
public static bool Test <T>(List2D <T> list, Predicate <T> match) => list.Exists(match);