putLWW

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

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

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

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

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

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

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

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

If value is null, the key is deleted.

Return

the delta corresponding to this operation.

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

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

If value is null, the key is deleted.

Return

the delta corresponding to this operation.