Contact: aviboots(AT)netvision.net.il
42,709 questions
55,473 answers
573 users
fun main() { val mutableSet = mutableSetOf(1, 2, 3, 4, 5) mutableSet.remove(3) println(mutableSet) } /* run: [1, 2, 4, 5] */