refreshList
Clear the MutableList and the add new items.
Example:
val list = mutableListOf(1, 2, 3)
list.refresh(4..6) // [4, 5, 6]
Content copied to clipboard
Since
1.1.0
See also
Clear the ArrayList and the add new items.
Example:
val list = arrayListOf(1, 2, 3)
list.refresh(4..6) // [4, 5, 6]
Content copied to clipboard
Since
1.1.0