From 9586c4938ec907a3c4c548fcd24cca13daea1cde Mon Sep 17 00:00:00 2001 From: Tommy Ettinger Date: Mon, 10 Oct 2022 15:04:19 -0700 Subject: [PATCH] Release 1.0.4.1 ! --- README.md | 13 +- docs/apidocs/allclasses-index.html | 2 +- docs/apidocs/allpackages-index.html | 2 +- .../ds/interop/ConversionToGDX.html | 2 +- .../ds/interop/ConversionToJDK.html | 2 +- .../tommyettinger/ds/interop/JsonSupport.html | 270 +++++++++++------- .../ds/interop/package-summary.html | 2 +- .../ds/interop/package-tree.html | 2 +- docs/apidocs/help-doc.html | 2 +- docs/apidocs/index-all.html | 18 +- docs/apidocs/index.html | 2 +- docs/apidocs/member-search-index.js | 2 +- docs/apidocs/overview-tree.html | 2 +- gradle.properties | 2 +- 14 files changed, 205 insertions(+), 118 deletions(-) diff --git a/README.md b/README.md index 9d598f6..717fc50 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,9 @@ The Json serialization also uses an especially-concise format to store each of t [juniper](https://github.com/tommyettinger/juniper). Even though juniper is not a direct dependency of jdkgdxds, it used to be part of that library, and its use is recommended with any of the randomized methods in jdkgdxds, so it still makes sense to have here. These classes (`DistinctRandom`, `LaserRandom`, `TricycleRandom`, `FourWheelRandom`, `ChopRandom`, -`WhiskerRandom`, `StrangerRandom`, `TrimRandom`, `MizuchiRandom`, `RomuTrioRandom`, `Xoshiro256StarStarRandom`, and -`Xoshiro128PlusPlusRandom`, ) are sometimes serializable without jdkgdxds-interop, but work regardless of JDK version if +`WhiskerRandom`, `StrangerRandom`, `TrimRandom`, `MizuchiRandom`, `RomuTrioRandom`, `PasarRandom`, `GoldenQuasiRandom`, +`VanDerCorputQuasiRandom`, `Xoshiro256StarStarRandom`, and `Xoshiro128PlusPlusRandom`, ) are sometimes serializable +without jdkgdxds-interop, but work regardless of JDK version if you do use this library. Better still, you can register `EnhancedRandom` for serialization, so places that have an `EnhancedRandom` but don't specify an implementation can still store one (which includes its implementing class) and read an `EnhancedRandom` back. If you have your own class that extends `java.util.Random`, which is admittedly unlikely, @@ -37,7 +38,9 @@ you should probably write your own serializer modeled after the serializer for t Java 17 and higher block libGDX's `Json` class from accessing the state of `java.util.Random`, which also prevents any serialization of subclasses unless they use custom serialization. This also means that `java.util.Random` can't be serialized or deserialized by libGDX `Json` on JDK 17 or higher, even with a custom serializer, unless some special -additional work happens (and even that might not work on future JDKs). +additional work happens (and even that might not work on future JDKs). `digital`'s `AlternateRandom` class matches the +API of `Random` exactly, so it doesn't allow anything to be serialized either on JDK 17 -- use juniper's `PasarRandom` +instead, since it uses the same algorithm. Starting with juniper 0.1.0, it now contains quite a few statistical distributions, each of which stores some parameter or parameters and an EnhancedRandom to generate numbers. These can all be registered individually or as a group by @@ -53,7 +56,7 @@ be handy to weakly obfuscate numbers if you pass a scrambled base (as `Base` can ## 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.4.0" +implementation "com.github.tommyettinger:jdkgdxds_interop:1.0.4.1" ``` 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. @@ -63,7 +66,7 @@ If you use GWT (libGDX's HTML target), then you also need this in your `html/bui implementation "com.github.tommyettinger:digital:0.1.4:sources" implementation "com.github.tommyettinger:juniper:0.1.6:sources" implementation "com.github.tommyettinger:jdkgdxds:1.0.4:sources" -implementation "com.github.tommyettinger:jdkgdxds_interop:1.0.4.0:sources" +implementation "com.github.tommyettinger:jdkgdxds_interop:1.0.4.1:sources" ``` You also need the GWT `inherits` in your `GdxDefinition.gwt.xml` file: ```xml diff --git a/docs/apidocs/allclasses-index.html b/docs/apidocs/allclasses-index.html index 23294d3..9e942ae 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.4.0 API) +All Classes and Interfaces (jdkgdxds_interop 1.0.4.1 API) diff --git a/docs/apidocs/allpackages-index.html b/docs/apidocs/allpackages-index.html index 12db78b..c672cb5 100644 --- a/docs/apidocs/allpackages-index.html +++ b/docs/apidocs/allpackages-index.html @@ -2,7 +2,7 @@ -All Packages (jdkgdxds_interop 1.0.4.0 API) +All Packages (jdkgdxds_interop 1.0.4.1 API) diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToGDX.html b/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToGDX.html index 55362df..3a63e02 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.4.0 API) +ConversionToGDX (jdkgdxds_interop 1.0.4.1 API) diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToJDK.html b/docs/apidocs/com/github/tommyettinger/ds/interop/ConversionToJDK.html index f5542d7..4f0962b 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.4.0 API) +ConversionToJDK (jdkgdxds_interop 1.0.4.1 API) diff --git a/docs/apidocs/com/github/tommyettinger/ds/interop/JsonSupport.html b/docs/apidocs/com/github/tommyettinger/ds/interop/JsonSupport.html index 6f97b41..26fe425 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.4.0 API) +JsonSupport (jdkgdxds_interop 1.0.4.1 API) @@ -101,200 +101,210 @@

Method Summary

Registers JDKGDXDS' classes with the given Json object, allowing it to read and write JDKGDXDS types.
static void
-
registerAtomicLong(com.badlogic.gdx.utils.Json json)
+
registerArcsineDistribution(com.badlogic.gdx.utils.Json json)
-
Registers AtomicLong with the given Json object, so AtomicLong can be written to and read from JSON.
+
Registers ArcsineDistribution with the given Json object, so ArcsineDistribution can be written to and read from JSON.
static void
-
registerBase(com.badlogic.gdx.utils.Json json)
+
registerAtomicLong(com.badlogic.gdx.utils.Json json)
-
Registers Base with the given Json object, so Base can be written to and read from JSON.
+
Registers AtomicLong with the given Json object, so AtomicLong can be written to and read from JSON.
static void
-
registerBernoulliDistribution(com.badlogic.gdx.utils.Json json)
+
registerBase(com.badlogic.gdx.utils.Json json)
-
Registers BernoulliDistribution with the given Json object, so BernoulliDistribution can be written to and read from JSON.
+
Registers Base with the given Json object, so Base can be written to and read from JSON.
static void
-
registerBetaDistribution(com.badlogic.gdx.utils.Json json)
+
registerBernoulliDistribution(com.badlogic.gdx.utils.Json json)
-
Registers BetaDistribution with the given Json object, so BetaDistribution can be written to and read from JSON.
+
Registers BernoulliDistribution with the given Json object, so BernoulliDistribution can be written to and read from JSON.
static void
-
registerBetaPrimeDistribution(com.badlogic.gdx.utils.Json json)
+
registerBetaDistribution(com.badlogic.gdx.utils.Json json)
-
Registers BetaPrimeDistribution with the given Json object, so BetaPrimeDistribution can be written to and read from JSON.
+
Registers BetaDistribution with the given Json object, so BetaDistribution can be written to and read from JSON.
static void
-
registerBinaryHeap(com.badlogic.gdx.utils.Json json)
+
registerBetaPrimeDistribution(com.badlogic.gdx.utils.Json json)
-
Registers BinaryHeap with the given Json object, so BinaryHeap can be written to and read from JSON.
+
Registers BetaPrimeDistribution with the given Json object, so BetaPrimeDistribution can be written to and read from JSON.
static void
-
registerBinomialDistribution(com.badlogic.gdx.utils.Json json)
+
registerBinaryHeap(com.badlogic.gdx.utils.Json json)
-
Registers BinomialDistribution with the given Json object, so BinomialDistribution can be written to and read from JSON.
+
Registers BinaryHeap with the given Json object, so BinaryHeap can be written to and read from JSON.
static void
-
registerBooleanDeque(com.badlogic.gdx.utils.Json json)
+
registerBinomialDistribution(com.badlogic.gdx.utils.Json json)
-
Registers BooleanDeque with the given Json object, so BooleanDeque can be written to and read from JSON.
+
Registers BinomialDistribution with the given Json object, so BinomialDistribution can be written to and read from JSON.
static void
-
registerBooleanList(com.badlogic.gdx.utils.Json json)
+
registerBooleanDeque(com.badlogic.gdx.utils.Json json)
-
Registers BooleanList with the given Json object, so BooleanList can be written to and read from JSON.
+
Registers BooleanDeque with the given Json object, so BooleanDeque can be written to and read from JSON.
static void
-
registerByteDeque(com.badlogic.gdx.utils.Json json)
+
registerBooleanList(com.badlogic.gdx.utils.Json json)
-
Registers ByteDeque with the given Json object, so ByteDeque can be written to and read from JSON.
+
Registers BooleanList with the given Json object, so BooleanList can be written to and read from JSON.
static void
-
registerByteList(com.badlogic.gdx.utils.Json json)
+
registerByteDeque(com.badlogic.gdx.utils.Json json)
-
Registers ByteList with the given Json object, so ByteList can be written to and read from JSON.
+
Registers ByteDeque with the given Json object, so ByteDeque can be written to and read from JSON.
static void
-
registerCaseInsensitiveMap(com.badlogic.gdx.utils.Json json)
+
registerByteList(com.badlogic.gdx.utils.Json json)
-
Registers CaseInsensitiveMap with the given Json object, so CaseInsensitiveMap can be written to and read from JSON.
+
Registers ByteList with the given Json object, so ByteList can be written to and read from JSON.
static void
-
registerCaseInsensitiveOrderedMap(com.badlogic.gdx.utils.Json json)
+
registerCaseInsensitiveMap(com.badlogic.gdx.utils.Json json)
-
Registers CaseInsensitiveOrderedMap with the given Json object, so CaseInsensitiveOrderedMap can be written to and read from JSON.
+
Registers CaseInsensitiveMap with the given Json object, so CaseInsensitiveMap can be written to and read from JSON.
static void
-
registerCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.Json json)
+
registerCaseInsensitiveOrderedMap(com.badlogic.gdx.utils.Json json)
-
Registers CaseInsensitiveOrderedSet with the given Json object, so CaseInsensitiveOrderedSet can be written to and read from JSON.
+
Registers CaseInsensitiveOrderedMap with the given Json object, so CaseInsensitiveOrderedMap can be written to and read from JSON.
static void
-
registerCaseInsensitiveSet(com.badlogic.gdx.utils.Json json)
+
registerCaseInsensitiveOrderedSet(com.badlogic.gdx.utils.Json json)
-
Registers CaseInsensitiveSet with the given Json object, so CaseInsensitiveSet can be written to and read from JSON.
+
Registers CaseInsensitiveOrderedSet with the given Json object, so CaseInsensitiveOrderedSet can be written to and read from JSON.
static void
-
registerCauchyDistribution(com.badlogic.gdx.utils.Json json)
+
registerCaseInsensitiveSet(com.badlogic.gdx.utils.Json json)
-
Registers CauchyDistribution with the given Json object, so CauchyDistribution can be written to and read from JSON.
+
Registers CaseInsensitiveSet with the given Json object, so CaseInsensitiveSet can be written to and read from JSON.
static void
-
registerCharDeque(com.badlogic.gdx.utils.Json json)
+
registerCauchyDistribution(com.badlogic.gdx.utils.Json json)
-
Registers CharDeque with the given Json object, so CharDeque can be written to and read from JSON.
+
Registers CauchyDistribution with the given Json object, so CauchyDistribution can be written to and read from JSON.
static void
-
registerCharList(com.badlogic.gdx.utils.Json json)
+
registerCharDeque(com.badlogic.gdx.utils.Json json)
-
Registers CharList with the given Json object, so CharList can be written to and read from JSON.
+
Registers CharDeque with the given Json object, so CharDeque can be written to and read from JSON.
static void
-
registerChiDistribution(com.badlogic.gdx.utils.Json json)
+
registerCharList(com.badlogic.gdx.utils.Json json)
-
Registers ChiDistribution with the given Json object, so ChiDistribution can be written to and read from JSON.
+
Registers CharList with the given Json object, so CharList can be written to and read from JSON.
static void
-
registerChiSquareDistribution(com.badlogic.gdx.utils.Json json)
+
registerChiDistribution(com.badlogic.gdx.utils.Json json)
-
Registers ChiSquareDistribution with the given Json object, so ChiSquareDistribution can be written to and read from JSON.
+
Registers ChiDistribution with the given Json object, so ChiDistribution can be written to and read from JSON.
static void
-
registerChopRandom(com.badlogic.gdx.utils.Json json)
+
registerChiSquareDistribution(com.badlogic.gdx.utils.Json json)
-
Registers ChopRandom with the given Json object, so ChopRandom can be written to and read from JSON.
+
Registers ChiSquareDistribution with the given Json object, so ChiSquareDistribution can be written to and read from JSON.
static void
-
registerClass(com.badlogic.gdx.utils.Json json)
+
registerChopRandom(com.badlogic.gdx.utils.Json json)
-
Registers the JDK Class type with the given Json object, so Class values can be written to and read from JSON.
+
Registers ChopRandom with the given Json object, so ChopRandom can be written to and read from JSON.
static void
-
registerContinuousUniformDistribution(com.badlogic.gdx.utils.Json json)
+
registerClass(com.badlogic.gdx.utils.Json json)
-
Registers ContinuousUniformDistribution with the given Json object, so ContinuousUniformDistribution can be written to and read from JSON.
+
Registers the JDK Class type with the given Json object, so Class values can be written to and read from JSON.
static void
-
registerDiscreteUniformDistribution(com.badlogic.gdx.utils.Json json)
+
registerContinuousUniformDistribution(com.badlogic.gdx.utils.Json json)
-
Registers DiscreteUniformDistribution with the given Json object, so DiscreteUniformDistribution can be written to and read from JSON.
+
Registers ContinuousUniformDistribution with the given Json object, so ContinuousUniformDistribution can be written to and read from JSON.
static void
-
registerDistinctRandom(com.badlogic.gdx.utils.Json json)
+
registerDiscreteUniformDistribution(com.badlogic.gdx.utils.Json json)
-
Registers DistinctRandom with the given Json object, so DistinctRandom can be written to and read from JSON.
+
Registers DiscreteUniformDistribution with the given Json object, so DiscreteUniformDistribution can be written to and read from JSON.
static void
-
registerDistributedRandom(com.badlogic.gdx.utils.Json json)
+
registerDistinctRandom(com.badlogic.gdx.utils.Json json)
-
Registers DistributedRandom with the given Json object, so DistributedRandom can be written to and read from JSON.
+
Registers DistinctRandom with the given Json object, so DistinctRandom can be written to and read from JSON.
static void
-
registerDistribution(com.badlogic.gdx.utils.Json json)
+
registerDistributedRandom(com.badlogic.gdx.utils.Json json)
-
Registers Distribution with the given Json object, so Distribution can be written to and read from JSON.
+
Registers DistributedRandom with the given Json object, so DistributedRandom can be written to and read from JSON.
static void
-
registerDoubleDeque(com.badlogic.gdx.utils.Json json)
+
registerDistribution(com.badlogic.gdx.utils.Json json)
-
Registers DoubleDeque with the given Json object, so DoubleDeque can be written to and read from JSON.
+
Registers Distribution with the given Json object, so Distribution can be written to and read from JSON.
static void
-
registerDoubleList(com.badlogic.gdx.utils.Json json)
+
registerDoubleDeque(com.badlogic.gdx.utils.Json json)
-
Registers DoubleList with the given Json object, so DoubleList can be written to and read from JSON.
+
Registers DoubleDeque with the given Json object, so DoubleDeque can be written to and read from JSON.
static void
-
registerEnhancedRandom(com.badlogic.gdx.utils.Json json)
+
registerDoubleList(com.badlogic.gdx.utils.Json json)
-
Registers EnhancedRandom with the given Json object, so EnhancedRandom can be written to and read from JSON.
+
Registers DoubleList with the given Json object, so DoubleList can be written to and read from JSON.
static void
-
registerErlangDistribution(com.badlogic.gdx.utils.Json json)
+
registerEnhancedRandom(com.badlogic.gdx.utils.Json json)
-
Registers ErlangDistribution with the given Json object, so ErlangDistribution can be written to and read from JSON.
+
Registers EnhancedRandom with the given Json object, so EnhancedRandom can be written to and read from JSON.
static void
-
registerExponentialDistribution(com.badlogic.gdx.utils.Json json)
+
registerErlangDistribution(com.badlogic.gdx.utils.Json json)
-
Registers ExponentialDistribution with the given Json object, so ExponentialDistribution can be written to and read from JSON.
+
Registers ErlangDistribution with the given Json object, so ErlangDistribution can be written to and read from JSON.
static void
-
registerFisherSnedecorDistribution(com.badlogic.gdx.utils.Json json)
+
registerExponentialDistribution(com.badlogic.gdx.utils.Json json)
-
Registers FisherSnedecorDistribution with the given Json object, so FisherSnedecorDistribution can be written to and read from JSON.
+
Registers ExponentialDistribution with the given Json object, so ExponentialDistribution can be written to and read from JSON.
static void
-
registerFisherTippettDistribution(com.badlogic.gdx.utils.Json json)
+
registerFisherSnedecorDistribution(com.badlogic.gdx.utils.Json json)
-
Registers FisherTippettDistribution with the given Json object, so FisherTippettDistribution can be written to and read from JSON.
+
Registers FisherSnedecorDistribution with the given Json object, so FisherSnedecorDistribution can be written to and read from JSON.
static void
-
registerFloatDeque(com.badlogic.gdx.utils.Json json)
+
registerFisherTippettDistribution(com.badlogic.gdx.utils.Json json)
-
Registers FloatDeque with the given Json object, so FloatDeque can be written to and read from JSON.
+
Registers FisherTippettDistribution with the given Json object, so FisherTippettDistribution can be written to and read from JSON.
static void
-
registerFloatList(com.badlogic.gdx.utils.Json json)
+
registerFloatDeque(com.badlogic.gdx.utils.Json json)
-
Registers FloatList with the given Json object, so FloatList can be written to and read from JSON.
+
Registers FloatDeque with the given Json object, so FloatDeque can be written to and read from JSON.
static void
-
registerFourWheelRandom(com.badlogic.gdx.utils.Json json)
+
registerFloatList(com.badlogic.gdx.utils.Json json)
-
Registers FourWheelRandom with the given Json object, so FourWheelRandom can be written to and read from JSON.
+
Registers FloatList with the given Json object, so FloatList can be written to and read from JSON.
static void
-
registerGammaDistribution(com.badlogic.gdx.utils.Json json)
+
registerFourWheelRandom(com.badlogic.gdx.utils.Json json)
-
Registers GammaDistribution with the given Json object, so GammaDistribution can be written to and read from JSON.
+
Registers FourWheelRandom with the given Json object, so FourWheelRandom can be written to and read from JSON.
static void
-
registerGeometricDistribution(com.badlogic.gdx.utils.Json json)
+
registerGammaDistribution(com.badlogic.gdx.utils.Json json)
+
Registers GammaDistribution with the given Json object, so GammaDistribution can be written to and read from JSON.
+
+
static void
+
registerGeometricDistribution(com.badlogic.gdx.utils.Json json)
+
Registers GeometricDistribution with the given Json object, so GeometricDistribution can be written to and read from JSON.
+
static void
+
registerGoldenQuasiRandom(com.badlogic.gdx.utils.Json json)
+
+
Registers GoldenQuasiRandom with the given Json object, so GoldenQuasiRandom can be written to and read from JSON.
+
static void
registerHasher(com.badlogic.gdx.utils.Json json)
@@ -536,65 +546,75 @@

Method Summary

Registers ParetoDistribution with the given Json object, so ParetoDistribution can be written to and read from JSON.
static void
-
registerPoissonDistribution(com.badlogic.gdx.utils.Json json)
+
registerPasarRandom(com.badlogic.gdx.utils.Json json)
-
Registers PoissonDistribution with the given Json object, so PoissonDistribution can be written to and read from JSON.
+
Registers PasarRandom with the given Json object, so PasarRandom 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 TricycleRandom with the given Json object, so TricycleRandom can be written to and read from JSON.
+
+
static void
+
registerTrimRandom(com.badlogic.gdx.utils.Json json)
+
Registers TrimRandom with the given Json object, so TrimRandom can be written to and read from JSON.
+
static void
+
registerVanDerCorputQuasiRandom(com.badlogic.gdx.utils.Json json)
+
+
Registers VanDerCorputQuasiRandom with the given Json object, so VanDerCorputQuasiRandom can be written to and read from JSON.
+
static void
registerWeibullDistribution(com.badlogic.gdx.utils.Json json)
@@ -1278,6 +1298,18 @@

registerWhiskerRandom

  • +
    +

    registerPasarRandom

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

    public static void registerChopRandom(@Nonnull @@ -1386,6 +1418,30 @@

    registerDistinctRandom

  • +
    +

    registerGoldenQuasiRandom

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

    registerVanDerCorputQuasiRandom

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

    public static void registerDistributedRandom(@Nonnull @@ -1436,6 +1492,18 @@

    registerRandomXS128

  • +
    +

    registerArcsineDistribution

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

    public static void registerBernoulliDistribution(@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 026f7de..e8a94d0 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.4.0 API) +com.github.tommyettinger.ds.interop (jdkgdxds_interop 1.0.4.1 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 e1be081..1c331ec 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.4.0 API) +com.github.tommyettinger.ds.interop Class Hierarchy (jdkgdxds_interop 1.0.4.1 API) diff --git a/docs/apidocs/help-doc.html b/docs/apidocs/help-doc.html index 912465e..c5d6ad6 100644 --- a/docs/apidocs/help-doc.html +++ b/docs/apidocs/help-doc.html @@ -2,7 +2,7 @@ -API Help (jdkgdxds_interop 1.0.4.0 API) +API Help (jdkgdxds_interop 1.0.4.1 API) diff --git a/docs/apidocs/index-all.html b/docs/apidocs/index-all.html index 6576ce4..8755201 100644 --- a/docs/apidocs/index-all.html +++ b/docs/apidocs/index-all.html @@ -2,7 +2,7 @@ -Index (jdkgdxds_interop 1.0.4.0 API) +Index (jdkgdxds_interop 1.0.4.1 API) @@ -85,6 +85,10 @@

    R

    Registers JDKGDXDS' classes with the given Json object, allowing it to read and write JDKGDXDS types.
    +
    registerArcsineDistribution(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    +
    +
    Registers ArcsineDistribution with the given Json object, so ArcsineDistribution can be written to and read from JSON.
    +
    registerAtomicLong(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    Registers AtomicLong with the given Json object, so AtomicLong can be written to and read from JSON.
    @@ -241,6 +245,10 @@

    R

    Registers GeometricDistribution with the given Json object, so GeometricDistribution can be written to and read from JSON.
    +
    registerGoldenQuasiRandom(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    +
    +
    Registers GoldenQuasiRandom with the given Json object, so GoldenQuasiRandom can be written to and read from JSON.
    +
    registerHasher(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    Registers Hasher with the given Json object, so Hasher can be written to and read from JSON.
    @@ -433,6 +441,10 @@

    R

    Registers ParetoDistribution with the given Json object, so ParetoDistribution can be written to and read from JSON.
    +
    registerPasarRandom(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    +
    +
    Registers PasarRandom with the given Json object, so PasarRandom can be written to and read from JSON.
    +
    registerPoissonDistribution(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    Registers PoissonDistribution with the given Json object, so PoissonDistribution can be written to and read from JSON.
    @@ -481,6 +493,10 @@

    R

    Registers TrimRandom with the given Json object, so TrimRandom can be written to and read from JSON.
    +
    registerVanDerCorputQuasiRandom(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    +
    +
    Registers VanDerCorputQuasiRandom with the given Json object, so VanDerCorputQuasiRandom can be written to and read from JSON.
    +
    registerWeibullDistribution(Json) - Static method in class com.github.tommyettinger.ds.interop.JsonSupport
    Registers WeibullDistribution with the given Json object, so WeibullDistribution can be written to and read from JSON.
    diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html index 7e411b3..53962c2 100644 --- a/docs/apidocs/index.html +++ b/docs/apidocs/index.html @@ -2,7 +2,7 @@ -jdkgdxds_interop 1.0.4.0 API +jdkgdxds_interop 1.0.4.1 API diff --git a/docs/apidocs/member-search-index.js b/docs/apidocs/member-search-index.js index d7e76ab..1077a6f 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":"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 +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":"registerArcsineDistribution(Json)","u":"registerArcsineDistribution(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":"registerGoldenQuasiRandom(Json)","u":"registerGoldenQuasiRandom(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":"registerPasarRandom(Json)","u":"registerPasarRandom(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":"registerVanDerCorputQuasiRandom(Json)","u":"registerVanDerCorputQuasiRandom(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 3f85642..6b2f236 100644 --- a/docs/apidocs/overview-tree.html +++ b/docs/apidocs/overview-tree.html @@ -2,7 +2,7 @@ -Class Hierarchy (jdkgdxds_interop 1.0.4.0 API) +Class Hierarchy (jdkgdxds_interop 1.0.4.1 API) diff --git a/gradle.properties b/gradle.properties index 60dbb16..9f42a8e 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.1-SNAPSHOT +VERSION_NAME=1.0.4.1 POM_NAME=jdkgdxds_interop POM_DESCRIPTION=Inter-operate between libGDX and jdkgdxds.