Package-level declarations
Types
Link copied to clipboard
YsonTextNode represents a single character in a Text CRDT, optionally carrying inline attributes.
Link copied to clipboard
data class YsonTreeNode(val type: String, val value: String? = null, val attrs: Map<String, String>? = null, val children: List<YsonTreeNode>? = null)
YsonTreeNode represents a node in a Tree CRDT.
Functions
Link copied to clipboard
isDedupCounter returns true when value is a YsonValue.YsonDedupCounter.
Link copied to clipboard
textToString returns the concatenated character values of a YsonValue.YsonText.
Link copied to clipboard
treeToXML returns an XML string representation of a YsonValue.YsonTree.