diff --git a/README.md b/README.md index e3ab9f1..54e22fe 100644 --- a/README.md +++ b/README.md @@ -47,23 +47,23 @@ allowing any implementation to be fit into that variable. The [digital](https://github.com/tommyettinger/digital) library is a direct dependency of jdkgdxds, and it has a `Hasher` class that can be registered, as well as a `Base` class. `Base` is especially important here because you can -configure the numeral base that numbers are printed it by specifying one to `JsonSupport.setNumeralBase(Base)`; this can -be handy to obfuscate numbers if you pass a scrambled base (as `Base` can generate). +configure the numeral base that numbers are printed in by specifying one to `JsonSupport.setNumeralBase(Base)`; this can +be handy to weakly obfuscate numbers if you pass a scrambled base (as `Base` can generate). ## How do I get it? The Gradle dependency, with the usual caveats about optionally replacing `implementation` with `api`, is: ```groovy -implementation "com.github.tommyettinger:jdkgdxds_interop:1.0.3.2" +implementation "com.github.tommyettinger:jdkgdxds_interop:1.0.4.0" ``` It's not unlikely that you might need `api` instead of `implementation`, especially if you are writing a library, or a module that needs to be used from another section. If you use GWT (libGDX's HTML target), then you also need this in your `html/build.gradle` file: ```groovy -implementation "com.github.tommyettinger:digital:0.0.4:sources" -implementation "com.github.tommyettinger:juniper:0.1.0:sources" -implementation "com.github.tommyettinger:jdkgdxds:1.0.3:sources" -implementation "com.github.tommyettinger:jdkgdxds_interop:1.0.3.2:sources" +implementation "com.github.tommyettinger:digital:0.1.2:sources" +implementation "com.github.tommyettinger:juniper:0.1.4:sources" +implementation "com.github.tommyettinger:jdkgdxds:1.0.4:sources" +implementation "com.github.tommyettinger:jdkgdxds_interop:1.0.4.0:sources" ``` You also need the GWT `inherits` in your `GdxDefinition.gwt.xml` file: ```xml diff --git a/build.gradle b/build.gradle index 6aa0b57..9fd059e 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ def projectName = 'jdkgdxds_interop' version "$VERSION_NAME" group 'com.github.tommyettinger' -//api "com.github.tommyettinger:jdkgdxds_interop:1.0.1.0" +//api "com.github.tommyettinger:jdkgdxds_interop:1.0.4.0" [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8' diff --git a/docs/apidocs/allclasses-index.html b/docs/apidocs/allclasses-index.html index e725d86..23294d3 100644 --- a/docs/apidocs/allclasses-index.html +++ b/docs/apidocs/allclasses-index.html @@ -2,7 +2,7 @@ -All Classes and Interfaces (jdkgdxds_interop 1.0.3.3 API) +All Classes and Interfaces (jdkgdxds_interop 1.0.4.0 API) diff --git a/docs/apidocs/allpackages-index.html b/docs/apidocs/allpackages-index.html index 187824d..12db78b 100644 --- a/docs/apidocs/allpackages-index.html +++ b/docs/apidocs/allpackages-index.html @@ -2,7 +2,7 @@ -All Packages (jdkgdxds_interop 1.0.3.3 API) +All Packages (jdkgdxds_interop 1.0.4.0 API) diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToGDX.html b/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToGDX.html index d7f805e..55362df 100644 --- a/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToGDX.html +++ b/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToGDX.html @@ -2,7 +2,7 @@ -ConversionToGDX (jdkgdxds_interop 1.0.3.3 API) +ConversionToGDX (jdkgdxds_interop 1.0.4.0 API) diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToJDK.html b/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToJDK.html index 61fb354..f5542d7 100644 --- a/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToJDK.html +++ b/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToJDK.html @@ -2,7 +2,7 @@ -ConversionToJDK (jdkgdxds_interop 1.0.3.3 API) +ConversionToJDK (jdkgdxds_interop 1.0.4.0 API) diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/JsonSupport.html b/docs/apidocs/com/github/tommyettinger/ds/interop/JsonSupport.html index b250e21..6f97b41 100644 --- a/docs/apidocs/com/github/tommyettinger/ds/interop/JsonSupport.html +++ b/docs/apidocs/com/github/tommyettinger/ds/interop/JsonSupport.html @@ -2,7 +2,7 @@ -JsonSupport (jdkgdxds_interop 1.0.3.3 API) +JsonSupport (jdkgdxds_interop 1.0.4.0 API) @@ -451,173 +451,178 @@

Method Summary

Registers LongSet with the given Json object, so LongSet can be written to and read from JSON.
static void
-
registerMizuchiRandom(com.badlogic.gdx.utils.Json json)
+
registerLumpDistribution(com.badlogic.gdx.utils.Json json)
-
Registers MizuchiRandom with the given Json object, so MizuchiRandom can be written to and read from JSON.
+
Registers LumpDistribution with the given Json object, so LumpDistribution can be written to and read from JSON.
static void
-
registerNormalDistribution(com.badlogic.gdx.utils.Json json)
+
registerMizuchiRandom(com.badlogic.gdx.utils.Json json)
-
Registers NormalDistribution with the given Json object, so NormalDistribution can be written to and read from JSON.
+
Registers MizuchiRandom with the given Json object, so MizuchiRandom can be written to and read from JSON.
static void
-
registerNumberedSet(com.badlogic.gdx.utils.Json json)
+
registerNormalDistribution(com.badlogic.gdx.utils.Json json)
-
Registers NumberedSet with the given Json object, so NumberedSet can be written to and read from JSON.
+
Registers NormalDistribution with the given Json object, so NormalDistribution can be written to and read from JSON.
static void
-
registerObjectDeque(com.badlogic.gdx.utils.Json json)
+
registerNumberedSet(com.badlogic.gdx.utils.Json json)
-
Registers ObjectDeque with the given Json object, so ObjectDeque can be written to and read from JSON.
+
Registers NumberedSet with the given Json object, so NumberedSet can be written to and read from JSON.
static void
-
registerObjectFloatMap(com.badlogic.gdx.utils.Json json)
+
registerObjectDeque(com.badlogic.gdx.utils.Json json)
-
Registers ObjectFloatMap with the given Json object, so ObjectFloatMap can be written to and read from JSON.
+
Registers ObjectDeque with the given Json object, so ObjectDeque can be written to and read from JSON.
static void
-
registerObjectFloatOrderedMap(com.badlogic.gdx.utils.Json json)
+
registerObjectFloatMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectFloatOrderedMap with the given Json object, so ObjectFloatOrderedMap can be written to and read from JSON.
+
Registers ObjectFloatMap with the given Json object, so ObjectFloatMap can be written to and read from JSON.
static void
-
registerObjectIntMap(com.badlogic.gdx.utils.Json json)
+
registerObjectFloatOrderedMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectIntMap with the given Json object, so ObjectIntMap can be written to and read from JSON.
+
Registers ObjectFloatOrderedMap with the given Json object, so ObjectFloatOrderedMap can be written to and read from JSON.
static void
-
registerObjectIntOrderedMap(com.badlogic.gdx.utils.Json json)
+
registerObjectIntMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectIntOrderedMap with the given Json object, so ObjectIntOrderedMap can be written to and read from JSON.
+
Registers ObjectIntMap with the given Json object, so ObjectIntMap can be written to and read from JSON.
static void
-
registerObjectList(com.badlogic.gdx.utils.Json json)
+
registerObjectIntOrderedMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectList with the given Json object, so ObjectList can be written to and read from JSON.
+
Registers ObjectIntOrderedMap with the given Json object, so ObjectIntOrderedMap can be written to and read from JSON.
static void
-
registerObjectLongMap(com.badlogic.gdx.utils.Json json)
+
registerObjectList(com.badlogic.gdx.utils.Json json)
-
Registers ObjectLongMap with the given Json object, so ObjectLongMap can be written to and read from JSON.
+
Registers ObjectList with the given Json object, so ObjectList can be written to and read from JSON.
static void
-
registerObjectLongOrderedMap(com.badlogic.gdx.utils.Json json)
+
registerObjectLongMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectLongOrderedMap with the given Json object, so ObjectLongOrderedMap can be written to and read from JSON.
+
Registers ObjectLongMap with the given Json object, so ObjectLongMap can be written to and read from JSON.
static void
-
registerObjectObjectMap(com.badlogic.gdx.utils.Json json)
+
registerObjectLongOrderedMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectObjectMap with the given Json object, so ObjectObjectMap can be written to and read from JSON.
+
Registers ObjectLongOrderedMap with the given Json object, so ObjectLongOrderedMap can be written to and read from JSON.
static void
-
registerObjectObjectOrderedMap(com.badlogic.gdx.utils.Json json)
+
registerObjectObjectMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectObjectOrderedMap with the given Json object, so ObjectObjectOrderedMap can be written to and read from JSON.
+
Registers ObjectObjectMap with the given Json object, so ObjectObjectMap can be written to and read from JSON.
static void
-
registerObjectOrderedSet(com.badlogic.gdx.utils.Json json)
+
registerObjectObjectOrderedMap(com.badlogic.gdx.utils.Json json)
-
Registers ObjectOrderedSet with the given Json object, so ObjectOrderedSet can be written to and read from JSON.
+
Registers ObjectObjectOrderedMap with the given Json object, so ObjectObjectOrderedMap can be written to and read from JSON.
static void
-
registerObjectSet(com.badlogic.gdx.utils.Json json)
+
registerObjectOrderedSet(com.badlogic.gdx.utils.Json json)
-
Registers ObjectSet with the given Json object, so ObjectSet can be written to and read from JSON.
+
Registers ObjectOrderedSet with the given Json object, so ObjectOrderedSet can be written to and read from JSON.
static void
-
registerParetoDistribution(com.badlogic.gdx.utils.Json json)
+
registerObjectSet(com.badlogic.gdx.utils.Json json)
-
Registers ParetoDistribution with the given Json object, so ParetoDistribution can be written to and read from JSON.
+
Registers ObjectSet with the given Json object, so ObjectSet can be written to and read from JSON.
static void
-
registerPoissonDistribution(com.badlogic.gdx.utils.Json json)
+
registerParetoDistribution(com.badlogic.gdx.utils.Json json)
-
Registers PoissonDistribution with the given Json object, so PoissonDistribution can be written to and read from JSON.
+
Registers ParetoDistribution with the given Json object, so ParetoDistribution can be written to and read from JSON.
static void
-
registerPowerDistribution(com.badlogic.gdx.utils.Json json)
+
registerPoissonDistribution(com.badlogic.gdx.utils.Json json)
-
Registers PowerDistribution with the given Json object, so PowerDistribution can be written to and read from JSON.
+
Registers PoissonDistribution with the given Json object, so PoissonDistribution can be written to and read from JSON.
static void
-
registerRandomXS128(com.badlogic.gdx.utils.Json json)
+
registerPowerDistribution(com.badlogic.gdx.utils.Json json)
-
Registers RandomXS128 with the given Json object, so RandomXS128 can be written to and read from JSON.
+
Registers PowerDistribution with the given Json object, so PowerDistribution can be written to and read from JSON.
static void
-
registerRayleighDistribution(com.badlogic.gdx.utils.Json json)
+
registerRandomXS128(com.badlogic.gdx.utils.Json json)
-
Registers RayleighDistribution with the given Json object, so RayleighDistribution can be written to and read from JSON.
+
Registers RandomXS128 with the given Json object, so RandomXS128 can be written to and read from JSON.
static void
-
registerRomuTrioRandom(com.badlogic.gdx.utils.Json json)
+
registerRayleighDistribution(com.badlogic.gdx.utils.Json json)
-
Registers RomuTrioRandom with the given Json object, so RomuTrioRandom can be written to and read from JSON.
+
Registers RayleighDistribution with the given Json object, so RayleighDistribution can be written to and read from JSON.
static void
-
registerShortDeque(com.badlogic.gdx.utils.Json json)
+
registerRomuTrioRandom(com.badlogic.gdx.utils.Json json)
-
Registers ShortDeque with the given Json object, so ShortDeque can be written to and read from JSON.
+
Registers RomuTrioRandom with the given Json object, so RomuTrioRandom can be written to and read from JSON.
static void
-
registerShortList(com.badlogic.gdx.utils.Json json)
+
registerShortDeque(com.badlogic.gdx.utils.Json json)
-
Registers ShortList with the given Json object, so ShortList can be written to and read from JSON.
+
Registers ShortDeque with the given Json object, so ShortDeque can be written to and read from JSON.
static void
-
registerStrangerRandom(com.badlogic.gdx.utils.Json json)
+
registerShortList(com.badlogic.gdx.utils.Json json)
-
Registers StrangerRandom with the given Json object, so StrangerRandom can be written to and read from JSON.
+
Registers ShortList with the given Json object, so ShortList can be written to and read from JSON.
static void
-
registerStudentsTDistribution(com.badlogic.gdx.utils.Json json)
+
registerStrangerRandom(com.badlogic.gdx.utils.Json json)
-
Registers StudentsTDistribution with the given Json object, so StudentsTDistribution can be written to and read from JSON.
+
Registers StrangerRandom with the given Json object, so StrangerRandom can be written to and read from JSON.
static void
-
registerTriangularDistribution(com.badlogic.gdx.utils.Json json)
+
registerStudentsTDistribution(com.badlogic.gdx.utils.Json json)
-
Registers TriangularDistribution with the given Json object, so TriangularDistribution can be written to and read from JSON.
+
Registers StudentsTDistribution with the given Json object, so StudentsTDistribution can be written to and read from JSON.
static void
-
registerTricycleRandom(com.badlogic.gdx.utils.Json json)
+
registerTriangularDistribution(com.badlogic.gdx.utils.Json json)
-
Registers TricycleRandom with the given Json object, so TricycleRandom can be written to and read from JSON.
+
Registers TriangularDistribution with the given Json object, so TriangularDistribution can be written to and read from JSON.
static void
-
registerTrimRandom(com.badlogic.gdx.utils.Json json)
+
registerTricycleRandom(com.badlogic.gdx.utils.Json json)
-
Registers TrimRandom with the given Json object, so TrimRandom can be written to and read from JSON.
+
Registers TricycleRandom with the given Json object, so TricycleRandom can be written to and read from JSON.
static void
-
registerWeibullDistribution(com.badlogic.gdx.utils.Json json)
+
registerTrimRandom(com.badlogic.gdx.utils.Json json)
-
Registers WeibullDistribution with the given Json object, so WeibullDistribution can be written to and read from JSON.
+
Registers TrimRandom with the given Json object, so TrimRandom can be written to and read from JSON.
static void
-
registerWhiskerRandom(com.badlogic.gdx.utils.Json json)
+
registerWeibullDistribution(com.badlogic.gdx.utils.Json json)
-
Registers WhiskerRandom with the given Json object, so WhiskerRandom can be written to and read from JSON.
+
Registers WeibullDistribution with the given Json object, so WeibullDistribution can be written to and read from JSON.
static void
-
registerXoshiro128PlusPlusRandom(com.badlogic.gdx.utils.Json json)
+
registerWhiskerRandom(com.badlogic.gdx.utils.Json json)
-
Registers Xoshiro128PlusPlusRandom with the given Json object, so Xoshiro128PlusPlusRandom can be written to and read from JSON.
+
Registers WhiskerRandom with the given Json object, so WhiskerRandom can be written to and read from JSON.
static void
-
registerXoshiro256StarStarRandom(com.badlogic.gdx.utils.Json json)
+
registerXoshiro128PlusPlusRandom(com.badlogic.gdx.utils.Json json)
-
Registers Xoshiro256StarStarRandom with the given Json object, so Xoshiro256StarStarRandom can be written to and read from JSON.
+
Registers Xoshiro128PlusPlusRandom with the given Json object, so Xoshiro128PlusPlusRandom can be written to and read from JSON.
static void
-
registerZipfianDistribution(com.badlogic.gdx.utils.Json json)
+
registerXoshiro256StarStarRandom(com.badlogic.gdx.utils.Json json)
-
Registers ZipfianDistribution with the given Json object, so ZipfianDistribution can be written to and read from JSON.
+
Registers Xoshiro256StarStarRandom with the given Json object, so Xoshiro256StarStarRandom can be written to and read from JSON.
static void
-
setNumeralBase(com.github.tommyettinger.digital.Base base)
+
registerZipfianDistribution(com.badlogic.gdx.utils.Json json)
+
Registers ZipfianDistribution with the given Json object, so ZipfianDistribution can be written to and read from JSON.
+
+
static void
+
setNumeralBase(com.github.tommyettinger.digital.Base base)
+
Sets the numeral system, also called radix or base, used by some methods here to encode numbers.
@@ -1671,6 +1676,18 @@

registerLogNormalDistribution

  • +
    +

    registerLumpDistribution

    +
    public static void registerLumpDistribution(@Nonnull + com.badlogic.gdx.utils.Json json)
    +
    Registers LumpDistribution with the given Json object, so LumpDistribution can be written to and read from JSON.
    +
    +
    Parameters:
    +
    json - a libGDX Json object that will have a serializer registered
    +
    +
    +
  • +
  • registerNormalDistribution

    public static void registerNormalDistribution(@Nonnull diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/package-summary.html b/docs/apidocs/com/github/tommyettinger/ds/interop/package-summary.html index 024cf71..026f7de 100644 --- a/docs/apidocs/com/github/tommyettinger/ds/interop/package-summary.html +++ b/docs/apidocs/com/github/tommyettinger/ds/interop/package-summary.html @@ -2,7 +2,7 @@ -com.github.tommyettinger.ds.interop (jdkgdxds_interop 1.0.3.3 API) +com.github.tommyettinger.ds.interop (jdkgdxds_interop 1.0.4.0 API) diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/package-tree.html b/docs/apidocs/com/github/tommyettinger/ds/interop/package-tree.html index 32f2ee7..e1be081 100644 --- a/docs/apidocs/com/github/tommyettinger/ds/interop/package-tree.html +++ b/docs/apidocs/com/github/tommyettinger/ds/interop/package-tree.html @@ -2,7 +2,7 @@ -com.github.tommyettinger.ds.interop Class Hierarchy (jdkgdxds_interop 1.0.3.3 API) +com.github.tommyettinger.ds.interop Class Hierarchy (jdkgdxds_interop 1.0.4.0 API) diff --git a/docs/apidocs/help-doc.html b/docs/apidocs/help-doc.html index d5b24bc..912465e 100644 --- a/docs/apidocs/help-doc.html +++ b/docs/apidocs/help-doc.html @@ -2,7 +2,7 @@ -API Help (jdkgdxds_interop 1.0.3.3 API) +API Help (jdkgdxds_interop 1.0.4.0 API) diff --git a/docs/apidocs/index-all.html b/docs/apidocs/index-all.html index 6d77c78..6576ce4 100644 --- a/docs/apidocs/index-all.html +++ b/docs/apidocs/index-all.html @@ -2,7 +2,7 @@ -Index (jdkgdxds_interop 1.0.3.3 API) +Index (jdkgdxds_interop 1.0.4.0 API) @@ -365,6 +365,10 @@

    R

    Registers LongSet with the given Json object, so LongSet can be written to and read from JSON.
    +
    registerLumpDistribution(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    +
    +
    Registers LumpDistribution with the given Json object, so LumpDistribution can be written to and read from JSON.
    +
    registerMizuchiRandom(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    Registers MizuchiRandom with the given Json object, so MizuchiRandom can be written to and read from JSON.
    diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html index 2a4c545..7e411b3 100644 --- a/docs/apidocs/index.html +++ b/docs/apidocs/index.html @@ -2,7 +2,7 @@ -jdkgdxds_interop 1.0.3.3 API +jdkgdxds_interop 1.0.4.0 API diff --git a/docs/apidocs/member-search-index.js b/docs/apidocs/member-search-index.js index 5c75502..d7e76ab 100644 --- a/docs/apidocs/member-search-index.js +++ b/docs/apidocs/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"ConversionToGDX()","u":"%3Cinit%3E()"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"ConversionToJDK()","u":"%3Cinit%3E()"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"getNumeralBase()"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerAll(Json)","u":"registerAll(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerAtomicLong(Json)","u":"registerAtomicLong(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBase(Json)","u":"registerBase(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBernoulliDistribution(Json)","u":"registerBernoulliDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBetaDistribution(Json)","u":"registerBetaDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBetaPrimeDistribution(Json)","u":"registerBetaPrimeDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBinaryHeap(Json)","u":"registerBinaryHeap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBinomialDistribution(Json)","u":"registerBinomialDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBooleanDeque(Json)","u":"registerBooleanDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBooleanList(Json)","u":"registerBooleanList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerByteDeque(Json)","u":"registerByteDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerByteList(Json)","u":"registerByteList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveMap(Json)","u":"registerCaseInsensitiveMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveOrderedMap(Json)","u":"registerCaseInsensitiveOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveOrderedSet(Json)","u":"registerCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveSet(Json)","u":"registerCaseInsensitiveSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCauchyDistribution(Json)","u":"registerCauchyDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCharDeque(Json)","u":"registerCharDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCharList(Json)","u":"registerCharList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerChiDistribution(Json)","u":"registerChiDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerChiSquareDistribution(Json)","u":"registerChiSquareDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerChopRandom(Json)","u":"registerChopRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerClass(Json)","u":"registerClass(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerContinuousUniformDistribution(Json)","u":"registerContinuousUniformDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDiscreteUniformDistribution(Json)","u":"registerDiscreteUniformDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDistinctRandom(Json)","u":"registerDistinctRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDistributedRandom(Json)","u":"registerDistributedRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDistribution(Json)","u":"registerDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDoubleDeque(Json)","u":"registerDoubleDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDoubleList(Json)","u":"registerDoubleList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerEnhancedRandom(Json)","u":"registerEnhancedRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerErlangDistribution(Json)","u":"registerErlangDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerExponentialDistribution(Json)","u":"registerExponentialDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFisherSnedecorDistribution(Json)","u":"registerFisherSnedecorDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFisherTippettDistribution(Json)","u":"registerFisherTippettDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFloatDeque(Json)","u":"registerFloatDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFloatList(Json)","u":"registerFloatList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFourWheelRandom(Json)","u":"registerFourWheelRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerGammaDistribution(Json)","u":"registerGammaDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerGeometricDistribution(Json)","u":"registerGeometricDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerHasher(Json)","u":"registerHasher(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntDeque(Json)","u":"registerIntDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntFloatMap(Json)","u":"registerIntFloatMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntFloatOrderedMap(Json)","u":"registerIntFloatOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntIntMap(Json)","u":"registerIntIntMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntIntOrderedMap(Json)","u":"registerIntIntOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntList(Json)","u":"registerIntList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntLongMap(Json)","u":"registerIntLongMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntLongOrderedMap(Json)","u":"registerIntLongOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntObjectMap(Json)","u":"registerIntObjectMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntObjectOrderedMap(Json)","u":"registerIntObjectOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntOrderedSet(Json)","u":"registerIntOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntSet(Json)","u":"registerIntSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerKumaraswamyDistribution(Json)","u":"registerKumaraswamyDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLaplaceDistribution(Json)","u":"registerLaplaceDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLaserRandom(Json)","u":"registerLaserRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLogCauchyDistribution(Json)","u":"registerLogCauchyDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLogisticDistribution(Json)","u":"registerLogisticDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLogNormalDistribution(Json)","u":"registerLogNormalDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongDeque(Json)","u":"registerLongDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongFloatMap(Json)","u":"registerLongFloatMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongFloatOrderedMap(Json)","u":"registerLongFloatOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongIntMap(Json)","u":"registerLongIntMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongIntOrderedMap(Json)","u":"registerLongIntOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongList(Json)","u":"registerLongList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongLongMap(Json)","u":"registerLongLongMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongLongOrderedMap(Json)","u":"registerLongLongOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongObjectMap(Json)","u":"registerLongObjectMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongObjectOrderedMap(Json)","u":"registerLongObjectOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongOrderedSet(Json)","u":"registerLongOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongSet(Json)","u":"registerLongSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerMizuchiRandom(Json)","u":"registerMizuchiRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerNormalDistribution(Json)","u":"registerNormalDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerNumberedSet(Json)","u":"registerNumberedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectDeque(Json)","u":"registerObjectDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectFloatMap(Json)","u":"registerObjectFloatMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectFloatOrderedMap(Json)","u":"registerObjectFloatOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectIntMap(Json)","u":"registerObjectIntMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectIntOrderedMap(Json)","u":"registerObjectIntOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectList(Json)","u":"registerObjectList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectLongMap(Json)","u":"registerObjectLongMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectLongOrderedMap(Json)","u":"registerObjectLongOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectObjectMap(Json)","u":"registerObjectObjectMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectObjectOrderedMap(Json)","u":"registerObjectObjectOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectOrderedSet(Json)","u":"registerObjectOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectSet(Json)","u":"registerObjectSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerParetoDistribution(Json)","u":"registerParetoDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerPoissonDistribution(Json)","u":"registerPoissonDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerPowerDistribution(Json)","u":"registerPowerDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerRandomXS128(Json)","u":"registerRandomXS128(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerRayleighDistribution(Json)","u":"registerRayleighDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerRomuTrioRandom(Json)","u":"registerRomuTrioRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerShortDeque(Json)","u":"registerShortDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerShortList(Json)","u":"registerShortList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerStrangerRandom(Json)","u":"registerStrangerRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerStudentsTDistribution(Json)","u":"registerStudentsTDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerTriangularDistribution(Json)","u":"registerTriangularDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerTricycleRandom(Json)","u":"registerTricycleRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerTrimRandom(Json)","u":"registerTrimRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerWeibullDistribution(Json)","u":"registerWeibullDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerWhiskerRandom(Json)","u":"registerWhiskerRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerXoshiro128PlusPlusRandom(Json)","u":"registerXoshiro128PlusPlusRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerXoshiro256StarStarRandom(Json)","u":"registerXoshiro256StarStarRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerZipfianDistribution(Json)","u":"registerZipfianDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"setNumeralBase(Base)","u":"setNumeralBase(com.github.tommyettinger.digital.Base)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toArray(Collection)","u":"toArray(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toArrayMap(Map)","u":"toArrayMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toBooleanArray(PrimitiveCollection.OfBoolean)","u":"toBooleanArray(com.github.tommyettinger.ds.PrimitiveCollection.OfBoolean)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toBooleanList(BooleanArray)","u":"toBooleanList(com.badlogic.gdx.utils.BooleanArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toByteArray(PrimitiveCollection.OfByte)","u":"toByteArray(com.github.tommyettinger.ds.PrimitiveCollection.OfByte)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toByteDeque(ByteArray)","u":"toByteDeque(com.badlogic.gdx.utils.ByteArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toByteList(ByteArray)","u":"toByteList(com.badlogic.gdx.utils.ByteArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveMap(ObjectMap)","u":"toCaseInsensitiveMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveOrderedMap(ObjectMap)","u":"toCaseInsensitiveOrderedMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveOrderedSet(Array)","u":"toCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveOrderedSet(ObjectSet)","u":"toCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveSet(Array)","u":"toCaseInsensitiveSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveSet(ObjectSet)","u":"toCaseInsensitiveSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toCharArray(PrimitiveCollection.OfChar)","u":"toCharArray(com.github.tommyettinger.ds.PrimitiveCollection.OfChar)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCharDeque(CharArray)","u":"toCharDeque(com.badlogic.gdx.utils.CharArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCharList(CharArray)","u":"toCharList(com.badlogic.gdx.utils.CharArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toFloatArray(PrimitiveCollection.OfFloat)","u":"toFloatArray(com.github.tommyettinger.ds.PrimitiveCollection.OfFloat)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toFloatDeque(FloatArray)","u":"toFloatDeque(com.badlogic.gdx.utils.FloatArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toFloatList(FloatArray)","u":"toFloatList(com.badlogic.gdx.utils.FloatArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIdentityMap(Map)","u":"toIdentityMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIdentityObjectMap(ObjectMap)","u":"toIdentityObjectMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIdentityObjectOrderedMap(ObjectMap)","u":"toIdentityObjectOrderedMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntArray(PrimitiveCollection.OfInt)","u":"toIntArray(com.github.tommyettinger.ds.PrimitiveCollection.OfInt)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntDeque(IntArray)","u":"toIntDeque(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntDeque(IntSet)","u":"toIntDeque(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntFloatMap(IntFloatMap)","u":"toIntFloatMap(com.badlogic.gdx.utils.IntFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntFloatMap(IntFloatMap)","u":"toIntFloatMap(com.github.tommyettinger.ds.IntFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntFloatOrderedMap(IntFloatMap)","u":"toIntFloatOrderedMap(com.badlogic.gdx.utils.IntFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntIntMap(IntIntMap)","u":"toIntIntMap(com.badlogic.gdx.utils.IntIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntIntMap(IntIntMap)","u":"toIntIntMap(com.github.tommyettinger.ds.IntIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntIntOrderedMap(IntIntMap)","u":"toIntIntOrderedMap(com.badlogic.gdx.utils.IntIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntList(IntArray)","u":"toIntList(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntList(IntSet)","u":"toIntList(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntMap(IntObjectMap)","u":"toIntMap(com.github.tommyettinger.ds.IntObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntObjectMap(IntMap)","u":"toIntObjectMap(com.badlogic.gdx.utils.IntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntObjectOrderedMap(IntMap)","u":"toIntObjectOrderedMap(com.badlogic.gdx.utils.IntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntOrderedSet(IntArray)","u":"toIntOrderedSet(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntOrderedSet(IntSet)","u":"toIntOrderedSet(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntSet(IntArray)","u":"toIntSet(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntSet(IntSet)","u":"toIntSet(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntSet(PrimitiveCollection.OfInt)","u":"toIntSet(com.github.tommyettinger.ds.PrimitiveCollection.OfInt)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toLongArray(PrimitiveCollection.OfLong)","u":"toLongArray(com.github.tommyettinger.ds.PrimitiveCollection.OfLong)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongDeque(LongArray)","u":"toLongDeque(com.badlogic.gdx.utils.LongArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongDeque(LongQueue)","u":"toLongDeque(com.badlogic.gdx.utils.LongQueue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongList(LongArray)","u":"toLongList(com.badlogic.gdx.utils.LongArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongList(LongQueue)","u":"toLongList(com.badlogic.gdx.utils.LongQueue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toLongMap(LongObjectMap)","u":"toLongMap(com.github.tommyettinger.ds.LongObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongObjectMap(LongMap)","u":"toLongObjectMap(com.badlogic.gdx.utils.LongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongObjectOrderedMap(LongMap)","u":"toLongObjectOrderedMap(com.badlogic.gdx.utils.LongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toLongQueue(PrimitiveCollection.OfLong)","u":"toLongQueue(com.github.tommyettinger.ds.PrimitiveCollection.OfLong)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toNumberedSet(Array)","u":"toNumberedSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toNumberedSet(ObjectSet)","u":"toNumberedSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toNumberedSet(Queue)","u":"toNumberedSet(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectDeque(Array)","u":"toObjectDeque(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectDeque(ObjectSet)","u":"toObjectDeque(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectDeque(Queue)","u":"toObjectDeque(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectFloatMap(ObjectFloatMap)","u":"toObjectFloatMap(com.github.tommyettinger.ds.ObjectFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectFloatMap(ObjectFloatMap)","u":"toObjectFloatMap(com.badlogic.gdx.utils.ObjectFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectFloatOrderedMap(ObjectFloatMap)","u":"toObjectFloatOrderedMap(com.badlogic.gdx.utils.ObjectFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectIntMap(ObjectIntMap)","u":"toObjectIntMap(com.github.tommyettinger.ds.ObjectIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectIntMap(ObjectIntMap)","u":"toObjectIntMap(com.badlogic.gdx.utils.ObjectIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectIntOrderedMap(ObjectIntMap)","u":"toObjectIntOrderedMap(com.badlogic.gdx.utils.ObjectIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectList(Array)","u":"toObjectList(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectList(ObjectSet)","u":"toObjectList(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectList(Queue)","u":"toObjectList(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectLongMap(ObjectLongMap)","u":"toObjectLongMap(com.github.tommyettinger.ds.ObjectLongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectLongMap(ObjectLongMap)","u":"toObjectLongMap(com.badlogic.gdx.utils.ObjectLongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectLongOrderedMap(ObjectLongMap)","u":"toObjectLongOrderedMap(com.badlogic.gdx.utils.ObjectLongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectMap(Map)","u":"toObjectMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectMap(ArrayMap)","u":"toObjectObjectMap(com.badlogic.gdx.utils.ArrayMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectMap(ObjectMap)","u":"toObjectObjectMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectOrderedMap(ArrayMap)","u":"toObjectObjectOrderedMap(com.badlogic.gdx.utils.ArrayMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectOrderedMap(ObjectMap)","u":"toObjectObjectOrderedMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectOrderedSet(Array)","u":"toObjectOrderedSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectOrderedSet(ObjectSet)","u":"toObjectOrderedSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectOrderedSet(Queue)","u":"toObjectOrderedSet(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectSet(Array)","u":"toObjectSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectSet(Collection)","u":"toObjectSet(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectSet(ObjectSet)","u":"toObjectSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectSet(Queue)","u":"toObjectSet(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toOrderedMap(Map)","u":"toOrderedMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toOrderedSet(Collection)","u":"toOrderedSet(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toQueue(Collection)","u":"toQueue(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toShortArray(PrimitiveCollection.OfShort)","u":"toShortArray(com.github.tommyettinger.ds.PrimitiveCollection.OfShort)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toShortDeque(ShortArray)","u":"toShortDeque(com.badlogic.gdx.utils.ShortArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toShortList(ShortArray)","u":"toShortList(com.badlogic.gdx.utils.ShortArray)"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"ConversionToGDX()","u":"%3Cinit%3E()"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"ConversionToJDK()","u":"%3Cinit%3E()"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"getNumeralBase()"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerAll(Json)","u":"registerAll(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerAtomicLong(Json)","u":"registerAtomicLong(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBase(Json)","u":"registerBase(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBernoulliDistribution(Json)","u":"registerBernoulliDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBetaDistribution(Json)","u":"registerBetaDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBetaPrimeDistribution(Json)","u":"registerBetaPrimeDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBinaryHeap(Json)","u":"registerBinaryHeap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBinomialDistribution(Json)","u":"registerBinomialDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBooleanDeque(Json)","u":"registerBooleanDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerBooleanList(Json)","u":"registerBooleanList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerByteDeque(Json)","u":"registerByteDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerByteList(Json)","u":"registerByteList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveMap(Json)","u":"registerCaseInsensitiveMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveOrderedMap(Json)","u":"registerCaseInsensitiveOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveOrderedSet(Json)","u":"registerCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCaseInsensitiveSet(Json)","u":"registerCaseInsensitiveSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCauchyDistribution(Json)","u":"registerCauchyDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCharDeque(Json)","u":"registerCharDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerCharList(Json)","u":"registerCharList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerChiDistribution(Json)","u":"registerChiDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerChiSquareDistribution(Json)","u":"registerChiSquareDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerChopRandom(Json)","u":"registerChopRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerClass(Json)","u":"registerClass(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerContinuousUniformDistribution(Json)","u":"registerContinuousUniformDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDiscreteUniformDistribution(Json)","u":"registerDiscreteUniformDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDistinctRandom(Json)","u":"registerDistinctRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDistributedRandom(Json)","u":"registerDistributedRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDistribution(Json)","u":"registerDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDoubleDeque(Json)","u":"registerDoubleDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerDoubleList(Json)","u":"registerDoubleList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerEnhancedRandom(Json)","u":"registerEnhancedRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerErlangDistribution(Json)","u":"registerErlangDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerExponentialDistribution(Json)","u":"registerExponentialDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFisherSnedecorDistribution(Json)","u":"registerFisherSnedecorDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFisherTippettDistribution(Json)","u":"registerFisherTippettDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFloatDeque(Json)","u":"registerFloatDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFloatList(Json)","u":"registerFloatList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerFourWheelRandom(Json)","u":"registerFourWheelRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerGammaDistribution(Json)","u":"registerGammaDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerGeometricDistribution(Json)","u":"registerGeometricDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerHasher(Json)","u":"registerHasher(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntDeque(Json)","u":"registerIntDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntFloatMap(Json)","u":"registerIntFloatMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntFloatOrderedMap(Json)","u":"registerIntFloatOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntIntMap(Json)","u":"registerIntIntMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntIntOrderedMap(Json)","u":"registerIntIntOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntList(Json)","u":"registerIntList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntLongMap(Json)","u":"registerIntLongMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntLongOrderedMap(Json)","u":"registerIntLongOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntObjectMap(Json)","u":"registerIntObjectMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntObjectOrderedMap(Json)","u":"registerIntObjectOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntOrderedSet(Json)","u":"registerIntOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerIntSet(Json)","u":"registerIntSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerKumaraswamyDistribution(Json)","u":"registerKumaraswamyDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLaplaceDistribution(Json)","u":"registerLaplaceDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLaserRandom(Json)","u":"registerLaserRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLogCauchyDistribution(Json)","u":"registerLogCauchyDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLogisticDistribution(Json)","u":"registerLogisticDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLogNormalDistribution(Json)","u":"registerLogNormalDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongDeque(Json)","u":"registerLongDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongFloatMap(Json)","u":"registerLongFloatMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongFloatOrderedMap(Json)","u":"registerLongFloatOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongIntMap(Json)","u":"registerLongIntMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongIntOrderedMap(Json)","u":"registerLongIntOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongList(Json)","u":"registerLongList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongLongMap(Json)","u":"registerLongLongMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongLongOrderedMap(Json)","u":"registerLongLongOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongObjectMap(Json)","u":"registerLongObjectMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongObjectOrderedMap(Json)","u":"registerLongObjectOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongOrderedSet(Json)","u":"registerLongOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLongSet(Json)","u":"registerLongSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerLumpDistribution(Json)","u":"registerLumpDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerMizuchiRandom(Json)","u":"registerMizuchiRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerNormalDistribution(Json)","u":"registerNormalDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerNumberedSet(Json)","u":"registerNumberedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectDeque(Json)","u":"registerObjectDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectFloatMap(Json)","u":"registerObjectFloatMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectFloatOrderedMap(Json)","u":"registerObjectFloatOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectIntMap(Json)","u":"registerObjectIntMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectIntOrderedMap(Json)","u":"registerObjectIntOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectList(Json)","u":"registerObjectList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectLongMap(Json)","u":"registerObjectLongMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectLongOrderedMap(Json)","u":"registerObjectLongOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectObjectMap(Json)","u":"registerObjectObjectMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectObjectOrderedMap(Json)","u":"registerObjectObjectOrderedMap(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectOrderedSet(Json)","u":"registerObjectOrderedSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerObjectSet(Json)","u":"registerObjectSet(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerParetoDistribution(Json)","u":"registerParetoDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerPoissonDistribution(Json)","u":"registerPoissonDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerPowerDistribution(Json)","u":"registerPowerDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerRandomXS128(Json)","u":"registerRandomXS128(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerRayleighDistribution(Json)","u":"registerRayleighDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerRomuTrioRandom(Json)","u":"registerRomuTrioRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerShortDeque(Json)","u":"registerShortDeque(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerShortList(Json)","u":"registerShortList(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerStrangerRandom(Json)","u":"registerStrangerRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerStudentsTDistribution(Json)","u":"registerStudentsTDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerTriangularDistribution(Json)","u":"registerTriangularDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerTricycleRandom(Json)","u":"registerTricycleRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerTrimRandom(Json)","u":"registerTrimRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerWeibullDistribution(Json)","u":"registerWeibullDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerWhiskerRandom(Json)","u":"registerWhiskerRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerXoshiro128PlusPlusRandom(Json)","u":"registerXoshiro128PlusPlusRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerXoshiro256StarStarRandom(Json)","u":"registerXoshiro256StarStarRandom(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"registerZipfianDistribution(Json)","u":"registerZipfianDistribution(com.badlogic.gdx.utils.Json)"},{"p":"com.github.tommyettinger.ds.interop","c":"JsonSupport","l":"setNumeralBase(Base)","u":"setNumeralBase(com.github.tommyettinger.digital.Base)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toArray(Collection)","u":"toArray(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toArrayMap(Map)","u":"toArrayMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toBooleanArray(PrimitiveCollection.OfBoolean)","u":"toBooleanArray(com.github.tommyettinger.ds.PrimitiveCollection.OfBoolean)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toBooleanList(BooleanArray)","u":"toBooleanList(com.badlogic.gdx.utils.BooleanArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toByteArray(PrimitiveCollection.OfByte)","u":"toByteArray(com.github.tommyettinger.ds.PrimitiveCollection.OfByte)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toByteDeque(ByteArray)","u":"toByteDeque(com.badlogic.gdx.utils.ByteArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toByteList(ByteArray)","u":"toByteList(com.badlogic.gdx.utils.ByteArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveMap(ObjectMap)","u":"toCaseInsensitiveMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveOrderedMap(ObjectMap)","u":"toCaseInsensitiveOrderedMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveOrderedSet(Array)","u":"toCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveOrderedSet(ObjectSet)","u":"toCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveSet(Array)","u":"toCaseInsensitiveSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCaseInsensitiveSet(ObjectSet)","u":"toCaseInsensitiveSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toCharArray(PrimitiveCollection.OfChar)","u":"toCharArray(com.github.tommyettinger.ds.PrimitiveCollection.OfChar)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCharDeque(CharArray)","u":"toCharDeque(com.badlogic.gdx.utils.CharArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toCharList(CharArray)","u":"toCharList(com.badlogic.gdx.utils.CharArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toFloatArray(PrimitiveCollection.OfFloat)","u":"toFloatArray(com.github.tommyettinger.ds.PrimitiveCollection.OfFloat)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toFloatDeque(FloatArray)","u":"toFloatDeque(com.badlogic.gdx.utils.FloatArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toFloatList(FloatArray)","u":"toFloatList(com.badlogic.gdx.utils.FloatArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIdentityMap(Map)","u":"toIdentityMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIdentityObjectMap(ObjectMap)","u":"toIdentityObjectMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIdentityObjectOrderedMap(ObjectMap)","u":"toIdentityObjectOrderedMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntArray(PrimitiveCollection.OfInt)","u":"toIntArray(com.github.tommyettinger.ds.PrimitiveCollection.OfInt)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntDeque(IntArray)","u":"toIntDeque(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntDeque(IntSet)","u":"toIntDeque(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntFloatMap(IntFloatMap)","u":"toIntFloatMap(com.badlogic.gdx.utils.IntFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntFloatMap(IntFloatMap)","u":"toIntFloatMap(com.github.tommyettinger.ds.IntFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntFloatOrderedMap(IntFloatMap)","u":"toIntFloatOrderedMap(com.badlogic.gdx.utils.IntFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntIntMap(IntIntMap)","u":"toIntIntMap(com.badlogic.gdx.utils.IntIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntIntMap(IntIntMap)","u":"toIntIntMap(com.github.tommyettinger.ds.IntIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntIntOrderedMap(IntIntMap)","u":"toIntIntOrderedMap(com.badlogic.gdx.utils.IntIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntList(IntArray)","u":"toIntList(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntList(IntSet)","u":"toIntList(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntMap(IntObjectMap)","u":"toIntMap(com.github.tommyettinger.ds.IntObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntObjectMap(IntMap)","u":"toIntObjectMap(com.badlogic.gdx.utils.IntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntObjectOrderedMap(IntMap)","u":"toIntObjectOrderedMap(com.badlogic.gdx.utils.IntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntOrderedSet(IntArray)","u":"toIntOrderedSet(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntOrderedSet(IntSet)","u":"toIntOrderedSet(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntSet(IntArray)","u":"toIntSet(com.badlogic.gdx.utils.IntArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toIntSet(IntSet)","u":"toIntSet(com.badlogic.gdx.utils.IntSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toIntSet(PrimitiveCollection.OfInt)","u":"toIntSet(com.github.tommyettinger.ds.PrimitiveCollection.OfInt)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toLongArray(PrimitiveCollection.OfLong)","u":"toLongArray(com.github.tommyettinger.ds.PrimitiveCollection.OfLong)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongDeque(LongArray)","u":"toLongDeque(com.badlogic.gdx.utils.LongArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongDeque(LongQueue)","u":"toLongDeque(com.badlogic.gdx.utils.LongQueue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongList(LongArray)","u":"toLongList(com.badlogic.gdx.utils.LongArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongList(LongQueue)","u":"toLongList(com.badlogic.gdx.utils.LongQueue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toLongMap(LongObjectMap)","u":"toLongMap(com.github.tommyettinger.ds.LongObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongObjectMap(LongMap)","u":"toLongObjectMap(com.badlogic.gdx.utils.LongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toLongObjectOrderedMap(LongMap)","u":"toLongObjectOrderedMap(com.badlogic.gdx.utils.LongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toLongQueue(PrimitiveCollection.OfLong)","u":"toLongQueue(com.github.tommyettinger.ds.PrimitiveCollection.OfLong)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toNumberedSet(Array)","u":"toNumberedSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toNumberedSet(ObjectSet)","u":"toNumberedSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toNumberedSet(Queue)","u":"toNumberedSet(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectDeque(Array)","u":"toObjectDeque(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectDeque(ObjectSet)","u":"toObjectDeque(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectDeque(Queue)","u":"toObjectDeque(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectFloatMap(ObjectFloatMap)","u":"toObjectFloatMap(com.github.tommyettinger.ds.ObjectFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectFloatMap(ObjectFloatMap)","u":"toObjectFloatMap(com.badlogic.gdx.utils.ObjectFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectFloatOrderedMap(ObjectFloatMap)","u":"toObjectFloatOrderedMap(com.badlogic.gdx.utils.ObjectFloatMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectIntMap(ObjectIntMap)","u":"toObjectIntMap(com.github.tommyettinger.ds.ObjectIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectIntMap(ObjectIntMap)","u":"toObjectIntMap(com.badlogic.gdx.utils.ObjectIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectIntOrderedMap(ObjectIntMap)","u":"toObjectIntOrderedMap(com.badlogic.gdx.utils.ObjectIntMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectList(Array)","u":"toObjectList(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectList(ObjectSet)","u":"toObjectList(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectList(Queue)","u":"toObjectList(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectLongMap(ObjectLongMap)","u":"toObjectLongMap(com.github.tommyettinger.ds.ObjectLongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectLongMap(ObjectLongMap)","u":"toObjectLongMap(com.badlogic.gdx.utils.ObjectLongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectLongOrderedMap(ObjectLongMap)","u":"toObjectLongOrderedMap(com.badlogic.gdx.utils.ObjectLongMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectMap(Map)","u":"toObjectMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectMap(ArrayMap)","u":"toObjectObjectMap(com.badlogic.gdx.utils.ArrayMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectMap(ObjectMap)","u":"toObjectObjectMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectOrderedMap(ArrayMap)","u":"toObjectObjectOrderedMap(com.badlogic.gdx.utils.ArrayMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectObjectOrderedMap(ObjectMap)","u":"toObjectObjectOrderedMap(com.badlogic.gdx.utils.ObjectMap)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectOrderedSet(Array)","u":"toObjectOrderedSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectOrderedSet(ObjectSet)","u":"toObjectOrderedSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectOrderedSet(Queue)","u":"toObjectOrderedSet(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectSet(Array)","u":"toObjectSet(com.badlogic.gdx.utils.Array)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toObjectSet(Collection)","u":"toObjectSet(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectSet(ObjectSet)","u":"toObjectSet(com.badlogic.gdx.utils.ObjectSet)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toObjectSet(Queue)","u":"toObjectSet(com.badlogic.gdx.utils.Queue)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toOrderedMap(Map)","u":"toOrderedMap(java.util.Map)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toOrderedSet(Collection)","u":"toOrderedSet(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toQueue(Collection)","u":"toQueue(java.util.Collection)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToGDX","l":"toShortArray(PrimitiveCollection.OfShort)","u":"toShortArray(com.github.tommyettinger.ds.PrimitiveCollection.OfShort)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toShortDeque(ShortArray)","u":"toShortDeque(com.badlogic.gdx.utils.ShortArray)"},{"p":"com.github.tommyettinger.ds.interop","c":"ConversionToJDK","l":"toShortList(ShortArray)","u":"toShortList(com.badlogic.gdx.utils.ShortArray)"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/overview-tree.html b/docs/apidocs/overview-tree.html index 21b976b..3f85642 100644 --- a/docs/apidocs/overview-tree.html +++ b/docs/apidocs/overview-tree.html @@ -2,7 +2,7 @@ -Class Hierarchy (jdkgdxds_interop 1.0.3.3 API) +Class Hierarchy (jdkgdxds_interop 1.0.4.0 API) diff --git a/gradle.properties b/gradle.properties index effcf95..79da8d5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ gdxVersion=1.11.0 GROUP=com.github.tommyettinger POM_ARTIFACT_ID=jdkgdxds_interop -VERSION_NAME=1.0.4.0-SNAPSHOT +VERSION_NAME=1.0.4.0 POM_NAME=jdkgdxds_interop POM_DESCRIPTION=Inter-operate between libGDX and jdkgdxds.