put

fun put(key: String, value: Boolean?): MVMap

Puts a key / Boolean value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

fun put(key: String, value: Double?): MVMap

Puts a key / Double value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

fun put(key: String, value: Int?): MVMap

Puts a key / Int value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

fun put(key: String, value: String?): MVMap

Puts a key / String value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.