Package com.badlogic.gdx.utils.IntFloatMap

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


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

TOP

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

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.