summaryrefslogtreecommitdiff
path: root/docs/runtime_usage.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/runtime_usage.md')
-rw-r--r--docs/runtime_usage.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/runtime_usage.md b/docs/runtime_usage.md
index 85d15527..04bdd09d 100644
--- a/docs/runtime_usage.md
+++ b/docs/runtime_usage.md
@@ -142,6 +142,10 @@ val map: Map<String, Any> = Mapper.map(Data(42, "foo")) // mapOf("first" to 42,
To get your object back, use `unmap` function. To support objects with nullable values, use `mapNullable` and `unmapNullable`
+### JSON Tree Mapper
+
+`JsonTreeMapper` allows to map [abstract JSON syntax tree](../json/README.md) onto Kotlin classes and back with `readTree` and `writeTree` correspondingly.
+
### Dynamic object parser (JS only)
Allows you to convert JS objects of `dynamic` types into fair correct Kotlin objects.