Skip to content

Commit

Permalink
Release 0.2.1!
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Oct 29, 2021
1 parent ed8fc09 commit ba544be
Show file tree
Hide file tree
Showing 388 changed files with 7,600 additions and 869 deletions.
10 changes: 9 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
[0.1.4]
[0.2.1]
- [BREAKING CHANGE] EnhancedRandom.nextInt(int, int) and nextSignedInt(int, int) were sometimes broken with two very-distant arguments, but now behave correctly. This changes the output of two-argument calls only.
- The nice, human-readable natural sort is available as an option in NaturalTextComparator.
- Int and long hashing is back to using Fibonacci hashing, because not having it showed severe performance loss on some key sets.
- New StrangerRandom number generator doesn't use multiplication and is fairly fast/very-high-quality.
- Added the Xoshiro256** random number generator, which is present in Java 17 but unavailable to non-desktop platforms without this or similar code.
- Base provides configurable numeral base systems, such as hexadecimal and base-64, along with the option to scramble the base for light obfuscation.

[0.2.0]
- Fixed how `ObjectArray.sort()` works on Android across all versions. This was a potentially serious problem because of flaws in the Android library design.
- Added FourWheelRandom as yet another choice of EnhancedRandom; this is the fastest so far on Java 16 with HotSpot, and has four `long`s of state.
- Many convenience methods and important constructors in the deque classes, such as `with()` and copy constructors.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ classes use, or some form of fuzzy equality for float or double keys.

You have two options: Maven Central for stable-ish releases, or JitPack to select a commit of your choice to build.

Maven Central uses the dependency `api 'com.github.tommyettinger:jdkgdxds:0.2.0'` (you can use `implementation` instead
Maven Central uses the dependency `api 'com.github.tommyettinger:jdkgdxds:0.2.1'` (you can use `implementation` instead
of `api` if you don't use the `java-library` plugin). It does not need any additional repository to be specified in most
cases; if it can't be found, you may need the repository `mavenCentral()` . If you have an HTML module, add
`implementation 'com.github.tommyettinger:jdkgdxds:0.2.0:sources'` to its dependencies, and in its
`implementation 'com.github.tommyettinger:jdkgdxds:0.2.1:sources'` to its dependencies, and in its
`GdxDefinition.gwt.xml` (in the HTML module), add
```xml
<inherits name="jdkgdxds" />
Expand Down
896 changes: 462 additions & 434 deletions docs/apidocs/allclasses-index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/apidocs/allpackages-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>All Packages (jdkgdxds 0.2.0 API)</title>
<title>All Packages (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="package index">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/Arrangeable.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>Arrangeable (jdkgdxds 0.2.0 API)</title>
<title>Arrangeable (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, interface: Arrangeable">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>BinaryHeap.HeapIterator (jdkgdxds 0.2.0 API)</title>
<title>BinaryHeap.HeapIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: BinaryHeap, class: HeapIterator">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>BinaryHeap.Node (jdkgdxds 0.2.0 API)</title>
<title>BinaryHeap.Node (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: BinaryHeap, class: Node">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/BinaryHeap.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>BinaryHeap (jdkgdxds 0.2.0 API)</title>
<title>BinaryHeap (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: BinaryHeap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>BooleanList.BooleanListIterator (jdkgdxds 0.2.0 API)</title>
<title>BooleanList.BooleanListIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: BooleanList, class: BooleanListIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/BooleanList.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>BooleanList (jdkgdxds 0.2.0 API)</title>
<title>BooleanList (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: BooleanList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>ByteDeque.ByteDequeIterator (jdkgdxds 0.2.0 API)</title>
<title>ByteDeque.ByteDequeIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: ByteDeque, class: ByteDequeIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/ByteDeque.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>ByteDeque (jdkgdxds 0.2.0 API)</title>
<title>ByteDeque (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: ByteDeque">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>ByteList.ByteListIterator (jdkgdxds 0.2.0 API)</title>
<title>ByteList.ByteListIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: ByteList, class: ByteListIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/ByteList.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>ByteList (jdkgdxds 0.2.0 API)</title>
<title>ByteList (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: ByteList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveMap.Entry (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveMap.Entry (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveMap, class: Entry">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveMap.Keys (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveMap.Keys (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveMap, class: Keys">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveMap (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveMap (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveMap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveOrderedMap.Entry (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveOrderedMap.Entry (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveOrderedMap, class: Entry">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveOrderedMap.Keys (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveOrderedMap.Keys (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveOrderedMap, class: Keys">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveOrderedMap (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveOrderedMap (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveOrderedMap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveOrderedSet (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveOrderedSet (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveOrderedSet">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CaseInsensitiveSet (jdkgdxds 0.2.0 API)</title>
<title>CaseInsensitiveSet (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CaseInsensitiveSet">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CharDeque.CharDequeIterator (jdkgdxds 0.2.0 API)</title>
<title>CharDeque.CharDequeIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CharDeque, class: CharDequeIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/CharDeque.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CharDeque (jdkgdxds 0.2.0 API)</title>
<title>CharDeque (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CharDeque">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CharList.CharListIterator (jdkgdxds 0.2.0 API)</title>
<title>CharList.CharListIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CharList, class: CharListIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/CharList.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>CharList (jdkgdxds 0.2.0 API)</title>
<title>CharList (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: CharList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>DoubleDeque.DoubleDequeIterator (jdkgdxds 0.2.0 API)</title>
<title>DoubleDeque.DoubleDequeIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: DoubleDeque, class: DoubleDequeIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/DoubleDeque.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>DoubleDeque (jdkgdxds 0.2.0 API)</title>
<title>DoubleDeque (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: DoubleDeque">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>DoubleList.DoubleListIterator (jdkgdxds 0.2.0 API)</title>
<title>DoubleList.DoubleListIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: DoubleList, class: DoubleListIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/DoubleList.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>DoubleList (jdkgdxds 0.2.0 API)</title>
<title>DoubleList (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: DoubleList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>FloatDeque.FloatDequeIterator (jdkgdxds 0.2.0 API)</title>
<title>FloatDeque.FloatDequeIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: FloatDeque, class: FloatDequeIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/FloatDeque.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>FloatDeque (jdkgdxds 0.2.0 API)</title>
<title>FloatDeque (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: FloatDeque">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>FloatList.FloatListIterator (jdkgdxds 0.2.0 API)</title>
<title>FloatList.FloatListIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: FloatList, class: FloatListIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/FloatList.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>FloatList (jdkgdxds 0.2.0 API)</title>
<title>FloatList (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: FloatList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>HolderOrderedSet.HolderOrderedSetIterator (jdkgdxds 0.2.0 API)</title>
<title>HolderOrderedSet.HolderOrderedSetIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: HolderOrderedSet, class: HolderOrderedSetIterator">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>HolderOrderedSet (jdkgdxds 0.2.0 API)</title>
<title>HolderOrderedSet (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: HolderOrderedSet">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>HolderSet.HolderSetIterator (jdkgdxds 0.2.0 API)</title>
<title>HolderSet.HolderSetIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: HolderSet, class: HolderSetIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/HolderSet.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>HolderSet (jdkgdxds 0.2.0 API)</title>
<title>HolderSet (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: HolderSet">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>IdentityObjectMap (jdkgdxds 0.2.0 API)</title>
<title>IdentityObjectMap (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: IdentityObjectMap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>IdentityObjectOrderedMap (jdkgdxds 0.2.0 API)</title>
<title>IdentityObjectOrderedMap (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: IdentityObjectOrderedMap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>IntDeque.IntDequeIterator (jdkgdxds 0.2.0 API)</title>
<title>IntDeque.IntDequeIterator (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: IntDeque, class: IntDequeIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/IntDeque.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>IntDeque (jdkgdxds 0.2.0 API)</title>
<title>IntDeque (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: IntDeque">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (16) -->
<title>IntFloatMap.Entries (jdkgdxds 0.2.0 API)</title>
<title>IntFloatMap.Entries (jdkgdxds 0.2.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: com.github.tommyettinger.ds, class: IntFloatMap, class: Entries">
Expand Down
Loading

0 comments on commit ba544be

Please sign in to comment.