Closed
Description
This issue was originally filed by alexey.v.var...@gmail.com
Current specification reads:
/**
* Adds [value] into the set. The method has no effect if
* [value] was already in the set.
*/
void add(E value);
It is unclear how the value is checked for uniqueness: by identity, equality, hash code, whatever?
This is actually relevant to overall Set documentation, and affects all other methods & constructors (except clear()).
Please expand the documentation to address this.