putMV

fun putMV(key: String, value: Boolean?): Map

Put a key / Boolean MV value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

fun putMV(key: String, value: Double?): Map

Put a key / Double MV value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

fun putMV(key: String, value: Int?): Map

Put a key / Int MV value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

fun putMV(key: String, value: String?): Map

Put a key / String MV value pair into the map.

If value is null, the key is deleted.

Return

the delta corresponding to this operation.