SimpleDynamicDocument

A simple implementation of DynamicDocument that delegates to a MutableMap.

This class provides a concrete implementation of the DynamicDocument interface by wrapping an existing mutable map. It supports all standard map operations and provides the additional methods defined in the DynamicDocument interface.

Constructors

Link copied to clipboard
constructor(delegation: MutableMap<String, Any?>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The underlying mutable map that stores the document data.

Functions

Link copied to clipboard
open override fun getNestedDocument(key: String): DynamicDocument

Retrieves a nested document, converting it to a DynamicDocument if necessary.