minusAssign
Removes a single instance of the specified element from a MutableLiveData, if it is present. The observers are notified of the new value if any of the specified elements was removed.
operator fun <E> MutableLiveData<List<E>>.minusAssign(elements: Iterable<E>)
Content copied to clipboard
Removes all elements from this MutableLiveData that are also contained in the given elements collection. The observers are notified of the new value if the list was changed.
Removes the entry mapped by key
from the LiveData's value, notifying observers of the new value.