diff --git a/core/builtins/native/kotlin/Collections.kt b/core/builtins/native/kotlin/Collections.kt index f6bbb7ae47c..66bef106891 100644 --- a/core/builtins/native/kotlin/Collections.kt +++ b/core/builtins/native/kotlin/Collections.kt @@ -276,6 +276,12 @@ public interface MutableSet : Set, MutableCollection { override fun iterator(): MutableIterator // Modification Operations + + /** + * Adds the specified element to the set. + * + * @return `true` if the element has been added, `false` if the element is already contained in the set. + */ override fun add(element: E): Boolean override fun remove(element: E): Boolean