Set.js 489 B

12345678910111213141516171819
  1. import Collection from './Collection'
  2. /**
  3. * @see http://download.oracle.com/javase/6/docs/api/java/util/Set.html
  4. *
  5. * @extends {Collection}
  6. * @constructor
  7. * @private
  8. */
  9. export default class Set extends Collection {
  10. /**
  11. * Returns true if this set contains the specified element. More formally,
  12. * returns true if and only if this set contains an element e such that (o==null ?
  13. * e==null : o.equals(e)).
  14. * @param {Object} e
  15. * @return {boolean}
  16. */
  17. contains() { }
  18. }