19 lines
351 B
Java
19 lines
351 B
Java
/*
|
|
* @author alex.tkachman
|
|
*/
|
|
package jet;
|
|
|
|
public abstract class ExtensionFunction1<E, D1, R> extends DefaultJetObject {
|
|
protected ExtensionFunction1(TypeInfo<?> typeInfo) {
|
|
super(typeInfo);
|
|
}
|
|
|
|
public abstract R invoke(E receiver, D1 d1);
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "{E.(d1: D1) : R)}";
|
|
}
|
|
}
|
|
|