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

com.github.erosb.jsonsKema.DynamicPath.kt Maven / Gradle / Ivy

The newest version!
package com.github.erosb.jsonsKema

class DynamicPath {

    private val path = mutableListOf()

    fun 

inSegmentPath(seg: String, cb: () -> P?): P? { path.add(seg) val rval = cb() path.removeLast() return rval } fun asPointer(): JsonPointer = JsonPointer(path.toList()) }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy