Example usage for com.badlogic.gdx.utils IntMap subclass-usage

List of usage examples for com.badlogic.gdx.utils IntMap subclass-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx.utils IntMap subclass-usage.

Usage

From source file com.watabou.utils.SparseArray.java

public class SparseArray<T> extends IntMap<T> {
    public int[] keyArray() {
        return keys().toArray().toArray();
    }

    public List<T> valuesAsList() {