bjonnh
03/04/2019, 6:54 PMRuckus
03/04/2019, 7:10 PMString
.sealed class Json<T>(val value: T)
class JsonElem(value: String) : Json<String>(value)
class JsonArray(value: List<Json<*>>) : Json<List<Json<*>>>(value)
class JsonObject(value: Map<String, Json<*>>): Json<Map<String, Json<*>>>(value)
bjonnh
03/04/2019, 7:17 PMkevinmost
03/04/2019, 7:28 PMbjonnh
03/04/2019, 7:34 PMkevinmost
03/04/2019, 7:51 PMbjonnh
03/04/2019, 8:21 PMkevinmost
03/04/2019, 8:23 PMbjonnh
03/04/2019, 8:24 PMkevinmost
03/04/2019, 8:28 PMbjonnh
03/04/2019, 8:29 PMsitepodmatt
03/05/2019, 1:02 AMbjonnh
03/05/2019, 4:20 PM