
jsonvalues.OpMapObjs Maven / Gradle / Ivy
package jsonvalues;
import java.util.function.BiFunction;
abstract class OpMapObjs {
T json;
OpMapObjs(final T json) {
this.json = json;
}
abstract Trampoline map(final BiFunction super JsPath, ? super JsObj, JsValue> fn,
final JsPath startingPath
);
abstract Trampoline mapAll(final BiFunction super JsPath, ? super JsObj, JsValue> fn,
final JsPath startingPath
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy