All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsonvalues.JsValuePairLens Maven / Gradle / Ivy

package jsonvalues;


/**
 Represent a Lens which focus is the value of a json pair
 */
final class JsValuePairLens extends Lens {
    JsValuePairLens() {
        super(pair -> pair.value,
              value -> pair -> JsPair.of(pair.path,
                                         value)
             );

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy