uidsonic.fluid-json-basic.0.9.24.source-code.JSONDepth.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-json-basic Show documentation
Show all versions of fluid-json-basic Show documentation
A JSON library written in pure Kotlin (basic variant)
The newest version!
package com.github.fluidsonic.fluid.json
inline class JSONDepth(val value: Int) : Comparable {
override operator fun compareTo(other: JSONDepth) =
value.compareTo(other.value)
}