esMapConv

given esMapConv[K, V](using val kConv: NativeConverter[K], val vConv: NativeConverter[V]): NativeConverter[Map[K, V]]

Value members

Concrete methods

def fromNative(nativeJs: Any): Map[K, V]

Inherited methods

def fromJson(json: String): Map[K, V]

Convert a Json String to type A <br> Any RuntimeException subclass may be thrown if conversion fails.

Convert a Json String to type A <br> Any RuntimeException subclass may be thrown if conversion fails.

Inherited from
NativeConverter

Concrete fields

protected val kConv: NativeConverter[K]
protected val vConv: NativeConverter[V]

Extensions

Extensions

extension (t: Map[K, V])
def toNative: Any

Inherited extensions

extension (a: A)
def toJson: String

Convert type A to a JSON string <br> Any RuntimeException subclass may be thrown if conversion fails.

Convert type A to a JSON string <br> Any RuntimeException subclass may be thrown if conversion fails.

Inherited from
NativeConverter