goog.structs.Collection<T>Provided Bygoog.structs.CollectionAll Known Implementationsgoog.structs.AvlTreegoog.structs.SetAn interface for a collection of values. VIEW SOURCEInstance Methodsexpand_morethis.add( value ) → voidParametersvalue(T|null)Value to add to the collection. VIEW SOURCEexpand_morethis.contains( value ) → booleanParametersvalue(T|null)Value to find in the collection. ReturnsbooleanWhether the collection contains the specified value. VIEW SOURCEexpand_morethis.getCount() → numberParametersNone.ReturnsnumberThe number of values stored in the collection. VIEW SOURCEexpand_morethis.remove( value ) → voidParametersvalue(T|null)Value to remove from the collection. VIEW SOURCE