Java org.apache.commons.math3.util OpenIntToDoubleHashMap fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.util OpenIntToDoubleHashMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.util OpenIntToDoubleHashMap.

The text is from its open source code.

Constructor

OpenIntToDoubleHashMap(final double missingEntries)
Build an empty map with default size
OpenIntToDoubleHashMap(final int expectedSize)
Build an empty map with specified size and using NaN for missing entries.
OpenIntToDoubleHashMap(final OpenIntToDoubleHashMap source)
Copy constructor.
OpenIntToDoubleHashMap(final int expectedSize, final double missingEntries)
Build an empty map with specified size.

Method

booleancontainsKey(final int key)
Check if a value is associated with a key.
doubleget(final int key)
Get the stored value associated with the given key
Iteratoriterator()
Get an iterator over map elements.