jdk/src/java.base/share/classes/java/util/Collection.java
changeset 30655 d83f50188ca9
parent 27262 82895f3a728a
child 32108 aa5490a167ee
equal deleted inserted replaced
30654:3c2e826aa5ea 30655:d83f50188ca9
   535      * operation.
   535      * operation.
   536      *
   536      *
   537      * @implSpec
   537      * @implSpec
   538      * The default implementation creates a
   538      * The default implementation creates a
   539      * <em><a href="Spliterator.html#binding">late-binding</a></em> spliterator
   539      * <em><a href="Spliterator.html#binding">late-binding</a></em> spliterator
   540      * from the collections's {@code Iterator}.  The spliterator inherits the
   540      * from the collection's {@code Iterator}.  The spliterator inherits the
   541      * <em>fail-fast</em> properties of the collection's iterator.
   541      * <em>fail-fast</em> properties of the collection's iterator.
   542      * <p>
   542      * <p>
   543      * The created {@code Spliterator} reports {@link Spliterator#SIZED}.
   543      * The created {@code Spliterator} reports {@link Spliterator#SIZED}.
   544      *
   544      *
   545      * @implNote
   545      * @implNote