Skip to content

Commit

Permalink
Release 1.1.3 !
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Feb 5, 2023
1 parent ca1dded commit ef802ea
Show file tree
Hide file tree
Showing 323 changed files with 335 additions and 336 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,26 +105,26 @@ You have two options: Maven Central for stable releases, or JitPack to select a

Maven Central uses the Gradle dependency:
```
api 'com.github.tommyettinger:jdkgdxds:1.1.2'
api 'com.github.tommyettinger:jdkgdxds:1.1.3'
```
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()` or to remove the `mavenLocal()` repo. Jdkgdxds has dependencies on `digital` (which provides
common math code meant for use by multiple projects), `funderby` (Java 8 functional interfaces for primitive types), and for
annotations only, `checker-qual` ([the project GitHub page is here.](https://github.com/typetools/checker-framework)). The
version for the `digital` dependency is 0.1.7 (you can specify it manually with the core dependency
`api "com.github.tommyettinger:digital:0.1.7"`). Funderby has only changed once since its initial release, and is on version 0.0.2
version for the `digital` dependency is 0.1.8 (you can specify it manually with the core dependency
`api "com.github.tommyettinger:digital:0.1.8"`). Funderby has only changed once since its initial release, and is on version 0.0.2
(you can specify it manually with `implementation "com.github.tommyettinger:funderby:0.0.2"`). The version for `checker-qual` is
3.29.0 , and is expected to go up often because checker-qual rather-frequently updates to handle JDK changes. Earlier versions of
3.30.0 , and is expected to go up often because checker-qual rather-frequently updates to handle JDK changes. Earlier versions of
jdkgdxds used `jsr305` instead of `checker-qual`, which had some potential problems on Java 9 and up (not to mention that JSR305
is currently unmaintained). You can manually specify a `checker-qual` version with
`api "org.checkerframework:checker-qual:3.29.0"`.
`api "org.checkerframework:checker-qual:3.30.0"`.

If you have an HTML module, add:
```
implementation "com.github.tommyettinger:funderby:0.0.2:sources"
implementation "com.github.tommyettinger:digital:0.1.7:sources"
implementation "com.github.tommyettinger:jdkgdxds:1.1.2:sources"
implementation "com.github.tommyettinger:digital:0.1.8:sources"
implementation "com.github.tommyettinger:jdkgdxds:1.1.3:sources"
```
to its
dependencies, and in its `GdxDefinition.gwt.xml` (in the HTML module), add
Expand Down Expand Up @@ -157,7 +157,7 @@ works.
The dependency (and `inherits` line) on digital is not necessary for jdkgdxds
0.2.8, but is necessary starting in 1.0.3 and later. The dependency and `inherits` line for funderby is new in 1.0.4 .
Versions 1.0.1 and 1.0.2 also depended on [juniper](https://github.com/tommyettinger/juniper) 0.0.2 ; if you intend to use the
randomized algorithms here (like shuffles), then depending on Juniper (0.1.8) might be a good idea, though it is still optional.
randomized algorithms here (like shuffles), then depending on Juniper (0.1.9) might be a good idea, though it is still optional.
The versions are expected to increase somewhat for digital as bugs are found and fixed, but a low version number isn't a bad thing
for that library -- both digital and juniper were both mostly drawn from code in this library, and were tested significantly here.
The version for funderby is expected to stay at or around 0.0.2, since it is a relatively small library and is probably complete.
Expand All @@ -171,7 +171,7 @@ on what your other dependencies use, to your project or its core module (if ther
project). If you have an HTML module, add:
```
implementation "com.github.tommyettinger:funderby:0.0.2:sources"
implementation "com.github.tommyettinger:digital:0.1.7:sources"
implementation "com.github.tommyettinger:digital:0.1.8:sources"
implementation "com.github.tommyettinger:jdkgdxds:50e8ae043e:sources"
```
to its
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ dependencies {
api "com.github.tommyettinger:funderby:$funderbyVersion:sources"
api "com.github.tommyettinger:digital:$digitalVersion"
api "com.github.tommyettinger:digital:$digitalVersion:sources"
api "org.checkerframework:checker-qual:3.29.0" // provides nullity annotations
api "org.checkerframework:checker-qual:3.30.0" // provides nullity annotations
// api 'com.google.code.findbugs:jsr305:3.0.2' // may cause issues if JDK9+ modules are used
testImplementation "com.github.tommyettinger:juniper:$juniperVersion"
testImplementation "junit:junit:4.13.2"
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/allclasses-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>All Classes and Interfaces (jdkgdxds 1.1.2 API)</title>
<title>All Classes and Interfaces (jdkgdxds 1.1.3 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="class index">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/allpackages-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>All Packages (jdkgdxds 1.1.2 API)</title>
<title>All Packages (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>Arrangeable (jdkgdxds 1.1.2 API)</title>
<title>Arrangeable (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BinaryHeap.HeapIterator (jdkgdxds 1.1.2 API)</title>
<title>BinaryHeap.HeapIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BinaryHeap.Node (jdkgdxds 1.1.2 API)</title>
<title>BinaryHeap.Node (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BinaryHeap (jdkgdxds 1.1.2 API)</title>
<title>BinaryHeap (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BooleanDeque.BooleanDequeIterator (jdkgdxds 1.1.2 API)</title>
<title>BooleanDeque.BooleanDequeIterator (jdkgdxds 1.1.3 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: BooleanDeque, class: BooleanDequeIterator">
Expand Down
2 changes: 1 addition & 1 deletion docs/apidocs/com/github/tommyettinger/ds/BooleanDeque.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BooleanDeque (jdkgdxds 1.1.2 API)</title>
<title>BooleanDeque (jdkgdxds 1.1.3 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: BooleanDeque">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BooleanList.BooleanListIterator (jdkgdxds 1.1.2 API)</title>
<title>BooleanList.BooleanListIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BooleanList (jdkgdxds 1.1.2 API)</title>
<title>BooleanList (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>ByteDeque.ByteDequeIterator (jdkgdxds 1.1.2 API)</title>
<title>ByteDeque.ByteDequeIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>ByteDeque (jdkgdxds 1.1.2 API)</title>
<title>ByteDeque (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>ByteList.ByteListIterator (jdkgdxds 1.1.2 API)</title>
<title>ByteList.ByteListIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>ByteList (jdkgdxds 1.1.2 API)</title>
<title>ByteList (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveMap.Entry (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveMap.Entry (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveMap.Keys (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveMap.Keys (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveMap (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveMap (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveOrderedMap.Entry (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveOrderedMap.Entry (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveOrderedMap.Keys (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveOrderedMap.Keys (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveOrderedMap (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveOrderedMap (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveOrderedSet (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveOrderedSet (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CaseInsensitiveSet (jdkgdxds 1.1.2 API)</title>
<title>CaseInsensitiveSet (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CharDeque.CharDequeIterator (jdkgdxds 1.1.2 API)</title>
<title>CharDeque.CharDequeIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CharDeque (jdkgdxds 1.1.2 API)</title>
<title>CharDeque (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CharList.CharListIterator (jdkgdxds 1.1.2 API)</title>
<title>CharList.CharListIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CharList (jdkgdxds 1.1.2 API)</title>
<title>CharList (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>DoubleDeque.DoubleDequeIterator (jdkgdxds 1.1.2 API)</title>
<title>DoubleDeque.DoubleDequeIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>DoubleDeque (jdkgdxds 1.1.2 API)</title>
<title>DoubleDeque (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>DoubleList.DoubleListIterator (jdkgdxds 1.1.2 API)</title>
<title>DoubleList.DoubleListIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>DoubleList (jdkgdxds 1.1.2 API)</title>
<title>DoubleList (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>FloatDeque.FloatDequeIterator (jdkgdxds 1.1.2 API)</title>
<title>FloatDeque.FloatDequeIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>FloatDeque (jdkgdxds 1.1.2 API)</title>
<title>FloatDeque (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>FloatList.FloatListIterator (jdkgdxds 1.1.2 API)</title>
<title>FloatList.FloatListIterator (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>FloatList (jdkgdxds 1.1.2 API)</title>
<title>FloatList (jdkgdxds 1.1.3 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 @@ -2,7 +2,7 @@
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>HolderOrderedSet.HolderOrderedSetIterator (jdkgdxds 1.1.2 API)</title>
<title>HolderOrderedSet.HolderOrderedSetIterator (jdkgdxds 1.1.3 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
Loading

0 comments on commit ef802ea

Please sign in to comment.