Package net.minecraftforge.common.util
Class RecipeMatcher
java.lang.Object
net.minecraftforge.common.util.RecipeMatcher
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprivate static boolean
private static boolean
static <T> int[]
findMatches
(List<T> inputs, List<? extends Predicate<T>> tests) Attempts to match inputs to the specified tests.
-
Constructor Details
-
RecipeMatcher
public RecipeMatcher()
-
-
Method Details
-
findMatches
Attempts to match inputs to the specified tests. In the best way that all inputs are used by one test. Will return null in any of these cases: input/test lengths don't match. This is only for matching paired outputs. any input doesn't match a test any test doesn't match a input If we are unable to determine a proper pair- Returns:
- An array mapping inputs to tests. ret[x] = y means input[x] = test[y]
-
claim
-
backtrack
-