navicore.data.navipath.PathReader.scala Maven / Gradle / Ivy
The newest version!
package navicore.data.navipath
// under construction
// under construction
// under construction
trait PathReader {
def /(jsonString: String): Option[String]
}
object PathReaderInstances {
implicit val stringReader: PathReader =
new PathReader {
def /(jsonString: String): Option[String] =
FieldByPath(jsonString, "")
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy