Package com.badlogic.gdx.utils.IntFloatMap

Examples of com.badlogic.gdx.utils.IntFloatMap.Entries


  /** Returns an iterator for the entries 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 Entries entries () {
    if (entries1 == null) {
      entries1 = new Entries(this);
      entries2 = new Entries(this);
    }
    if (!entries1.valid) {
      entries1.reset();
      entries1.valid = true;
      entries2.valid = false;
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.utils.IntFloatMap.Entries

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.