Package
Class
Use
Tree
Deprecated
Index
All Classes
Help
Prev
Next
VCollections – Release 1
Uses of Interface org.violetlib.collections.ISet
Deprecated: ShowHide

Uses of Interface
org.violetlib.collections.ISet

    • Uses of ISet in org.violetlib.collections

      Methods in org.violetlib.collections that return ISet 
      Modifier and Type Method and Description
      static <V> ISet<V>  ISet.cast(ISet<?> o)
      Cast a set to a specific type.
      static <V> ISet<V>  ISet.create(Iterable<? extends V> elements)
      Create a set containing the specified elements.
      static <V> ISet<V>  ISet.create(V[] elements)
      Create a set containing the specified elements.
      static <V> ISet<V>  ISet.empty()
      Return an empty set.
      abstract ISet<V>  ISet.extending(V value)
      Return a set containing the members of this set and the specified value.
      abstract ISet<V>  ISet.extendingAll(ICollection<? extends V> values)
      Return a set containing the members of this set and the specified values.
      ISet<V>  ISet.filter(Predicate<V> predicate)
       
      abstract ISet<V>  MapSetBuilder.getValues(K key)
      Return the values currently associated with the specified key.
      ISet<V>  ISet.intersecting(ISet<?> other)
       
      static <V> ISet<V>  ISet.intersection(ISet<V> s, ISet<?> p)
       
      abstract ISet<K>  IMap.keySet()
       
      abstract <R> ISet<R>  ISet.map(Function<V,R> mapper)
       
      static <V> ISet<V>  ISet.of(V... es)
       
      static <V> ISet<V>  ISet.of(V e)
       
      ISet<V>  ISet.ordered()
      Return a set containing the members of this collection whose iteration order is defined by the natural sort order.
      ISet<V>  ISet.ordered(Comparator<? super V> comp)
      Return a set containing the members of this collection whose iteration order is defined by the specified comparator.
      abstract ISet<V>  ISet.removing(Object value)
      Return a set containing the members of this set excluding the specified value.
      ISet<V>  ISet.removingAll(ISet<?> values)
       
      abstract ISet<V>  IMap.values()
       
      abstract ISet<V>  SetBuilder.values()
      Return a set containing the previously supplied (and not removed) elements.
      Methods in org.violetlib.collections that return types with arguments of type ISet 
      Modifier and Type Method and Description
      abstract IMap<K,ISet<V>>  MapSetBuilder.value()
      Return a map containing the keys bound to sets of values.
      Methods in org.violetlib.collections with parameters of type ISet 
      Modifier and Type Method and Description
      static <V> ISet<V>  ISet.cast(ISet<?> o)
      Cast a set to a specific type.
      ISet<V>  ISet.intersecting(ISet<?> other)
       
      static <V> ISet<V>  ISet.intersection(ISet<V> s, ISet<?> p)
       
      static <V> ISet<V>  ISet.intersection(ISet<V> s, ISet<?> p)
       
      IList<V>  IList.removingAll(ISet<?> values)
      Return a list with the values from this list, in the same order, except that all instances of the specified values are excluded.
      ISet<V>  ISet.removingAll(ISet<?> values)
       
      IMap<K,V>  IMap.subset(ISet<K> keys)
      Return a map containing the bindings for the specified keys (if defined).
      Method parameters in org.violetlib.collections with type arguments of type ISet 
      Modifier and Type Method and Description
      abstract void  MapSetBuilder.addAll(IMap<K,ISet<V>> values)
      Add elements to the set from the associated map.