Created
April 1, 2018 04:44
-
-
Save sajjadyousefnia/4877b0a2d4a5232d1aaa0d70079c2675 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface MutableCollection<E> : Collection<E>, MutableIterable<E> { | |
override fun iterator(): MutableIterator<E> | |
public fun add(element: E): Boolean | |
public fun remove(element: E): Boolean | |
public fun addAll(elements: Collection<E>): Boolean | |
public fun removeAll(elements: Collection<E>): Boolean | |
public fun retainAll(elements: Collection<E>): Boolean | |
public fun clear(): Unit | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment