Duplicate MutableList.add docs in AbstractMutableList.add
Because the documentation inheritance doesn't work as desired here.
This commit is contained in:
@@ -22,6 +22,11 @@ expect abstract class AbstractMutableList<E> : MutableList<E> {
|
||||
|
||||
// From MutableList
|
||||
|
||||
/**
|
||||
* Adds the specified element to the end of this list.
|
||||
*
|
||||
* @return `true` because the list is always modified as the result of this operation.
|
||||
*/
|
||||
override fun add(element: E): Boolean
|
||||
override fun remove(element: E): Boolean
|
||||
override fun addAll(elements: Collection<E>): Boolean
|
||||
|
||||
Reference in New Issue
Block a user