类 RecipeMatcher
java.lang.Object
net.neoforged.neoforge.common.util.RecipeMatcher
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明private static boolean
private static boolean
static <T> int @Nullable []
findMatches
(List<T> inputs, List<? extends Predicate<T>> tests) Attempts to match inputs to the specified tests.
-
构造器详细资料
-
RecipeMatcher
public RecipeMatcher()
-
-
方法详细资料
-
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- 返回:
- An array mapping inputs to tests. ret[x] = y means input[x] = test[y]
-
claim
-
backtrack
-