Java com.badlogic.gdx.utils IntMap fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx.utils IntMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx.utils IntMap.

The text is from its open source code.

Subclass

com.badlogic.gdx.utils.IntMap has subclasses.
Click this link to see all its subclasses.

Constructor

IntMap()
Creates a new map with an initial capacity of 32 and a load factor of 0.8.
IntMap(int initialCapacity)
Creates a new map with a load factor of 0.8.
IntMap(IntMap map)
Creates a new map identical to the specified map.

Method

voidclear()
Entriesentries()
Returns an iterator for the entries in the map.
Vget(int key)
Iterator>iterator()
Vput(int key, V value)
Vremove(int key)
Valuesvalues()
Returns an iterator for the values in the map.