Package com.badlogic.gdx.utils.ArrayMap

Examples of com.badlogic.gdx.utils.ArrayMap.Values


  /** Returns an iterator for the values in the map. Remove is supported. Note that the same iterator instance is returned each
   * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
  public Values<V> values () {
    if (values1 == null) {
      values1 = new Values(this);
      values2 = new Values(this);
    }
    if (!values1.valid) {
      values1.reset();
      values1.valid = true;
      values2.valid = false;
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.utils.ArrayMap.Values

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.