Represents the method that defines a set of criteria and determines whether the specified component meets those criteria.
public delegate bool ComponentPredicate<T>(in T value);
T
The type of the component to compare.
value
T
The component value.
System.Boolean
true if the component meets the criteria; otherwise, false.