W3cubDocs

/Kotlin

JSON

external object JSON

Platform and version requirements: JS

Exposes the JavaScript JSON object to Kotlin.

Functions

parse

fun <T> parse(text: String): T
fun <T> parse(
    text: String, 
    reviver: (key: String, value: Any?) -> Any?
): T

stringify

fun stringify(o: Any?): String
fun stringify(
    o: Any?, 
    replacer: (key: String, value: Any?) -> Any?
): String
fun stringify(
    o: Any?, 
    replacer: (key: String, value: Any?) -> Any?, 
    space: Int
): String
fun stringify(
    o: Any?, 
    replacer: (key: String, value: Any?) -> Any?, 
    space: String
): String
fun stringify(o: Any?, replacer: Array<String>): String
fun stringify(
    o: Any?, 
    replacer: Array<String>, 
    space: Int
): String
fun stringify(
    o: Any?, 
    replacer: Array<String>, 
    space: String
): String

Inherited Functions

equals

open operator fun equals(other: Any?): Boolean

Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements:

hashCode

open fun hashCode(): Int

Returns a hash code value for the object. The general contract of hashCode is:

toString

open fun toString(): String

Returns a string representation of the object.

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.js/-j-s-o-n/