Skip to content

Commit 9b62a5a

Browse files
committed
Tweaking
1 parent b6a27dd commit 9b62a5a

17 files changed

+34
-39
lines changed

README.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
# Welcome to fastutil
22

3-
[fastutil](http://fastutil.di.unimi.it/) is a collection of type-specific
4-
Java classes that extend the Java Collections Framework by providing
5-
several containers, such as maps, sets, lists and prority queues,
6-
implementing the interfaces of the java.util package; it also provides big
7-
(64-bit) arrays, sets, lists, and fast, practical I/O classes for binary
8-
and text files.
9-
10-
fastutil provides a huge collection of specialized classes generated
11-
starting from a parameterized version; the classes are much more compact
12-
and much faster than the general ones. Please read the package
13-
documentation for more information.
3+
[fastutil](http://fastutil.di.unimi.it/) extends the Java Collections
4+
Framework by providing type-specific maps, sets, lists, and queues with a
5+
small memory footprint and fast access and insertion; it provides also big
6+
(64-bit) arrays, sets, and lists, sorting algorithms, fast, practical I/O
7+
classes for binary and text files, and facilities for memory mapping large
8+
files.
149

1510
Since version 8.5.5, fastutil is split into two jars for convenience:
1611

drv/AbstractBidirectionalIterator.drv

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package PACKAGE;
1919

2020
/** An abstract class facilitating the creation of type-specific {@linkplain it.unimi.dsi.fastutil.BidirectionalIterator bidirectional iterators}.
2121
*
22-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
22+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2323
* methods are now default methods of the type-specific interface.
2424
*/
2525

drv/AbstractBigListIterator.drv

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package PACKAGE;
1919

2020
/** An abstract class facilitating the creation of type-specific {@linkplain it.unimi.dsi.fastutil.BigListIterator big-list iterators}.
2121
*
22-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
22+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2323
* methods are now default methods of the type-specific interface.
2424
*/
2525

drv/AbstractComparator.drv

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package PACKAGE;
2020
/** An abstract class facilitating the creation of type-specific {@linkplain java.util.Comparator comparators}.
2121
*
2222
* @see java.util.Comparator
23-
* @deprecated As of fastutil 8 this class is no longer necessary, as its only previous abstract
23+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its only previous abstract
2424
* method is now a default method of the type-specific interface.
2525
*/
2626

drv/AbstractListIterator.drv

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package PACKAGE;
1919

2020
/** An abstract class facilitating the creation of type-specific {@linkplain java.util.ListIterator list iterators}.
2121
*
22-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
22+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2323
* methods are now default methods of the type-specific interface.
2424
*/
2525

drv/AbstractPriorityQueue.drv

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package PACKAGE;
1919

2020
/** An abstract class providing basic methods for priority queues implementing a type-specific interface.
21-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
21+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2222
* methods are now default methods of the type-specific interface.
2323
*/
2424
@Deprecated

drv/AbstractStack.drv

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package PACKAGE;
1919

2020
/** An abstract class providing basic methods for implementing a type-specific stack interface.
2121
*
22-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
22+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2323
* methods are now default methods of the type-specific interface.
2424
*/
2525
@Deprecated

drv/Arrays.drv

+8-8
Original file line numberDiff line numberDiff line change
@@ -1237,8 +1237,8 @@ public final class ARRAYS {
12371237
*
12381238
* <p>This method implements a <em>lexicographical</em> sorting of the arguments. Pairs of
12391239
* elements in the same position in the two provided arrays will be considered a single key, and
1240-
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or <code>x[i]
1241-
* == x[i + 1]</code> and {@code y[i] &le; y[i + 1]}.
1240+
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or {@code x[i]
1241+
* == x[i + 1]} and {@code y[i] &le; y[i + 1]}.
12421242
*
12431243
* @param x the first array to be sorted.
12441244
* @param y the second array to be sorted.
@@ -1299,8 +1299,8 @@ public final class ARRAYS {
12991299
*
13001300
* <p>This method implements a <em>lexicographical</em> sorting of the arguments. Pairs of
13011301
* elements in the same position in the two provided arrays will be considered a single key, and
1302-
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or <code>x[i]
1303-
* == x[i + 1]</code> and {@code y[i] &le; y[i + 1]}.
1302+
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or {@code x[i]
1303+
* == x[i + 1]} and {@code y[i] &le; y[i + 1]}.
13041304
*
13051305
* @param x the first array to be sorted.
13061306
* @param y the second array to be sorted.
@@ -1382,8 +1382,8 @@ public final class ARRAYS {
13821382
*
13831383
* <p>This method implements a <em>lexicographical</em> sorting of the arguments. Pairs of
13841384
* elements in the same position in the two provided arrays will be considered a single key, and
1385-
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or <code>x[i]
1386-
* == x[i + 1]</code> and {@code y[i] &le; y[i + 1]}.
1385+
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or {@code x[i]
1386+
* == x[i + 1]} and {@code y[i] &le; y[i + 1]}.
13871387
*
13881388
* @param x the first array to be sorted.
13891389
* @param y the second array to be sorted.
@@ -1407,8 +1407,8 @@ public final class ARRAYS {
14071407
*
14081408
* <p>This method implements a <em>lexicographical</em> sorting of the arguments. Pairs of
14091409
* elements in the same position in the two provided arrays will be considered a single key, and
1410-
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or <code>x[i]
1411-
* == x[i + 1]</code> and {@code y[i] &le; y[i + 1]}.
1410+
* permuted accordingly. In the end, either {@code x[i] &lt; x[i + 1]} or {@code x[i]
1411+
* == x[i + 1]} and {@code y[i] &le; y[i + 1]}.
14121412
*
14131413
* @param x the first array to be sorted.
14141414
* @param y the second array to be sorted.

drv/BinIOFragment.drv

+4-4
Original file line numberDiff line numberDiff line change
@@ -597,8 +597,8 @@ public static void STORE_KEYS(final KEY_TYPE array[], final CharSequence filenam
597597
* @param channel a readable channel.
598598
* @param byteOrder the byte order of the data from {@code channel}.
599599
* @param array a big array which will be filled with data from {@code channel}.
600-
* @param offset the index of the first element of {@code bigArray} to be filled.
601-
* @param length the number of elements of {@code bigArray} to be filled.
600+
* @param offset the index of the first element of {@code array} to be filled.
601+
* @param length the number of elements of {@code array} to be filled.
602602
* @return the number of elements actually read from {@code channel} (it might be less than {@code length} if {@code channel} ends).
603603
*/
604604
public static long LOAD_KEYS(final ReadableByteChannel channel, final ByteOrder byteOrder, final KEY_TYPE[][] array, final long offset, final long length) throws IOException {
@@ -1174,8 +1174,8 @@ public static void STORE_KEYS(final KEY_TYPE array[], final CharSequence filenam
11741174
*
11751175
* @param dataInput a data input.
11761176
* @param array a big array which will be filled with data from {@code dataInput}.
1177-
* @param offset the index of the first element of {@code bigArray} to be filled.
1178-
* @param length the number of elements of {@code bigArray} to be filled.
1177+
* @param offset the index of the first element of {@code array} to be filled.
1178+
* @param length the number of elements of {@code array} to be filled.
11791179
* @return the number of elements actually read from {@code dataInput} (it might be less than {@code length} if {@code dataInput} ends).
11801180
*/
11811181
public static long LOAD_KEYS(final DataInput dataInput, final KEY_TYPE[][] array, final long offset, final long length) throws IOException {

drv/List.drv

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,14 +208,14 @@ public interface LIST KEY_GENERIC extends List<KEY_GENERIC_CLASS>, COLLECTION KE
208208
/** Set (hopefully quickly) elements to match the array given.
209209
*
210210
* Sets each in this list to the corresponding elements in the array, as if by
211-
* <pre><code>
211+
* <pre>
212212
* ListIterator iter = listIterator(index);
213213
* int i = 0;
214214
* while (i &lt; length) {
215215
* iter.next();
216216
* iter.set(a[offset + i++]);
217217
* }
218-
* </code></pre>
218+
* </pre>
219219
* However, the exact implementation may be more efficient, taking into account
220220
* whether random access is faster or not, or at the discretion of subclasses,
221221
* abuse internals.

drv/Map.drv

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public interface MAP KEY_VALUE_GENERIC extends FUNCTION KEY_VALUE_GENERIC, Map<K
112112
/** Removes all of the mappings from this map (optional operation).
113113
* The map will be empty after this call returns.
114114
*
115-
* @throws UnsupportedOperationException if the <code>clear()</code> operation is not supported by this map
115+
* @throws UnsupportedOperationException if the {@link #clear()} operation is not supported by this map
116116
*/
117117

118118
@Override
@@ -509,7 +509,7 @@ public interface MAP KEY_VALUE_GENERIC extends FUNCTION KEY_VALUE_GENERIC, Map<K
509509
* in the given mapping function.
510510
*
511511
* <p>This version of {@linkplain java.util.Map#computeIfAbsent(Object, java.util.function.Function) computeIfAbsent()}
512-
* uses a type-specific version of <code>fastutil</code>'s {@link it.unimi.dsi.fastutil.Function Function}.
512+
* uses a type-specific version of {@code fastutil}'s {@link it.unimi.dsi.fastutil.Function Function}.
513513
* Since {@link it.unimi.dsi.fastutil.Function Function} has a {@link it.unimi.dsi.fastutil.Function#containsKey(Object) containsKey()}
514514
* method, it is possible to avoid adding a key by having {@code containsKey()} return {@code false} for that key.
515515
*

drv/Stack.drv

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public interface STACK KEY_GENERIC extends Stack<KEY_GENERIC_CLASS> {
4444

4545
/** Peeks at an element on the stack (optional operation).
4646
* @param i an index from the stop of the stack (0 represents the top).
47-
* @return the <code>i</code>-th element on the stack.
47+
* @return the {@code i}-th element on the stack.
4848
* @see Stack#peek(int)
4949
*/
5050
KEY_TYPE PEEK(int i);

pom-core-model.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<packaging>jar</packaging>
66
<name>fastutil</name>
77
<version>@VERSION@</version>
8-
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists and priority queues with a small memory footprint and fast operations; it provides also big (64-bit) arrays, sets and lists, sorting algorithms, and fast, practical I/O classes for binary and text files. This jar (fastutil-core.jar) contains data structures based on integers, longs, doubles, and objects, only; fastutil.jar contains all classes. If you have both jars in your dependencies, this jar should be excluded.</description>
8+
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast operations; it provides also big (64-bit) arrays, sets, and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. This jar (fastutil-core.jar) contains data structures based on integers, longs, doubles, and objects, only; fastutil.jar contains all classes. If you have both jars in your dependencies, this jar should be excluded.</description>
99
<url>http://fastutil.di.unimi.it/</url>
1010
<licenses>
1111
<license>

pom-model.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<packaging>jar</packaging>
66
<name>fastutil</name>
77
<version>@VERSION@</version>
8-
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists and priority queues with a small memory footprint and fast access and insertion; provides also big (64-bit) arrays, sets and lists, sorting algorithms, and fast, practical I/O classes for binary and text files. Note that if you have both this jar and fastutil-core.jar in your dependencies, fastutil-core.jar should be excluded.</description>
8+
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast access and insertion; it provides also big (64-bit) arrays, sets and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. Note that if you have both this jar and fastutil-core.jar in your dependencies, fastutil-core.jar should be excluded.</description>
99
<url>http://fastutil.di.unimi.it/</url>
1010
<licenses>
1111
<license>

src/it/unimi/dsi/fastutil/AbstractIndirectPriorityQueue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/** An abstract class providing basic methods for implementing the {@link IndirectPriorityQueue} interface.
2020
*
21-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
21+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2222
* methods are now default methods of {@link IndirectPriorityQueue}.
2323
*/
2424
@Deprecated

src/it/unimi/dsi/fastutil/AbstractPriorityQueue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/** An abstract class providing basic methods for implementing the {@link PriorityQueue} interface.
2020
*
21-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
21+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2222
* methods are now default methods of {@link PriorityQueue}.
2323
*/
2424
@Deprecated

src/it/unimi/dsi/fastutil/AbstractStack.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/** An abstract class providing basic methods for implementing the {@link Stack} interface.
2020
*
21-
* @deprecated As of fastutil 8 this class is no longer necessary, as its previous abstract
21+
* @deprecated As of {@code fastutil} 8 this class is no longer necessary, as its previous abstract
2222
* methods are now default methods of {@link Stack}.
2323
*/
2424
@Deprecated

0 commit comments

Comments
 (0)