aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/dnf/callback/ClauseCallback2Data2.java
blob: bfc8637ccc88811dd488953969c49eff5fbb1999 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.query.dnf.callback;

import tools.refinery.store.query.literal.Literal;
import tools.refinery.store.query.term.DataVariable;

import java.util.Collection;

@FunctionalInterface
public interface ClauseCallback2Data2<T1, T2> {
	Collection<Literal> toLiterals(DataVariable<T1> x1, DataVariable<T2> x2);
}