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

uidsonic.fluid-json-basic.0.9.24.source-code.JSONDepth.kt Maven / Gradle / Ivy

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)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy