public static ItemRequestResult <float> Test <FloatPredicate>( RefMatrix4x4 matrix, FloatPredicate match) where FloatPredicate : struct, IPredicate <float> => matrix.FindLast <float, RefMatrix4x4, FloatPredicate>(match);
public static ItemRequestResult <float> Test( RefMatrix4x4 matrix, Predicate <float> match) => matrix.FindLast(match);