add type info for compiled functions
This commit is contained in:
@@ -30,4 +30,6 @@ public interface ConsumerProxy<T> extends Consumer<T> {
|
||||
}
|
||||
|
||||
Consumer<T> getTarget();
|
||||
|
||||
String getInputType();
|
||||
}
|
||||
|
||||
@@ -31,4 +31,8 @@ public interface FunctionProxy<T, R> extends Function<T, R> {
|
||||
}
|
||||
|
||||
Function<T, R> getTarget();
|
||||
|
||||
String getInputType();
|
||||
|
||||
String getOutputType();
|
||||
}
|
||||
|
||||
@@ -30,4 +30,6 @@ public interface SupplierProxy<T> extends Supplier<T> {
|
||||
}
|
||||
|
||||
Supplier<T> getTarget();
|
||||
|
||||
String getOutputType();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user