static void setComponentNames(Matcher matcher, IMatcher[] matchers) { var componentNames = getComponentNames(matchers); if(componentNames != null) { matcher.componentNames = componentNames; } }
public static IAllOfMatcher AllOf(params int[] indices) { var matcher = new Matcher(); matcher._allOfIndices = distinctIndices(indices); return matcher; }