Skip to content

Commit 539be60

Browse files
Update README.md
1 parent 49ea9ee commit 539be60

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,3 +1539,13 @@ Creates an empty enum set with the specified element type.
15391539
</ul>
15401540
<h1></h1>
15411541
<h1 align="center"> ConcurrentSkipListSet </h1>
1542+
<ul>
1543+
<li> <h3> The ConcurrentSkipListSet class in Java is a part of the Java Collection Framework . </h3> </li>
1544+
<li> <h3> The ConcurrentSkipListSet class in Java implements the Collection interface and the AbstractSet class . </h3> </li>
1545+
<li> <h3>The ConcurrentSkipListSet class is a scalable concurrent NavigableSet implementation based on a ConcurrentSkipListMap. </h3> </li>
1546+
<li> <h3> The elements of the ConcurrentSkipListSet are kept sorted according to their natural ordering, or by a Comparator provided at set creation time, depending on which constructor is used. </h3> </li>
1547+
1548+
<li> <h3> The ConcurrentSkipListSet class implements Serializable, Cloneable, Iterable, Collection, NavigableSet, Set, SortedSet interfaces. </h3> </li>
1549+
<li> <h3> The ConcurrentSkipListSet does not allow null elements, because null arguments and return values cannot be reliably distinguished from the absence of elements. </h3> </li>
1550+
<li> <h3> The ConcurrentSkipListSet is thread-safe. </h3> </li>
1551+
</ul>

0 commit comments

Comments
 (0)