Package arc.struct

Class ObjectMap.Keys<K>

java.lang.Object
arc.struct.ObjectMap.Keys<K>
All Implemented Interfaces:
Iterable<K>, Iterator<K>
Direct Known Subclasses:
OrderedMap.OrderedMapKeys
Enclosing class:
ObjectMap<K,V>

public static class ObjectMap.Keys<K> extends Object
  • Field Details

    • hasNext

      public boolean hasNext
  • Constructor Details

  • Method Details

    • hasNext

      public boolean hasNext()
    • next

      public K next()
    • iterator

      public ObjectMap.Keys<K> iterator()
    • toSeq

      public Seq<K> toSeq()
      Returns a new array containing the remaining keys.
    • toSeq

      public Seq<K> toSeq(Seq<K> array)
      Adds the remaining keys to the array.
    • reset

      public void reset()
    • remove

      public void remove()
      Specified by:
      remove in interface Iterator<K>