Re: RFR: 8311517: ArrayList javadoc improvements related to sequenced collection updates

2023-07-26 Thread Stuart Marks
On Wed, 26 Jul 2023 11:02:20 GMT, dan1st wrote: > The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add > addFirst(), removeFirst() and reversed() methods to lists. > However, the Javadoc of List mentions: > > The size, isEmpty, get, set, iterator, and listIterator operati

Re: RFR: 8311517: ArrayList javadoc improvements related to sequenced collection updates

2023-07-26 Thread dan1st
On Wed, 26 Jul 2023 11:02:20 GMT, dan1st wrote: > The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add > addFirst(), removeFirst() and reversed() methods to lists. > However, the Javadoc of List mentions: > > The size, isEmpty, get, set, iterator, and listIterator operati

Re: RFR: 8311517: ArrayList javadoc improvements related to sequenced collection updates

2023-07-26 Thread Stuart Marks
On Wed, 26 Jul 2023 11:02:20 GMT, dan1st wrote: > The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add > addFirst(), removeFirst() and reversed() methods to lists. > However, the Javadoc of List mentions: > > The size, isEmpty, get, set, iterator, and listIterator operati

Re: RFR: 8311517: ArrayList javadoc improvements related to sequenced collection updates

2023-07-26 Thread Stuart Marks
On Wed, 26 Jul 2023 11:02:20 GMT, dan1st wrote: > The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add > addFirst(), removeFirst() and reversed() methods to lists. > However, the Javadoc of List mentions: > > The size, isEmpty, get, set, iterator, and listIterator operati

RFR: 8311517: ArrayList javadoc improvements related to sequenced collection updates

2023-07-26 Thread dan1st
The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add addFirst(), removeFirst() and reversed() methods to lists. However, the Javadoc of List mentions: > The size, isEmpty, get, set, iterator, and listIterator operations run in > constant time. The add operation runs in am