I came across the below in the JAVA docs related to the LinkedHashSet
:
Hash table and linked list implementation of the Set interface, with predictable iteration order.
But If I see the source of LinkedHashSet
I am not able to find any implements/extends
related to HashTable
or LinkedList
. Then how does it inhibits the features of both these data structures
?