Skip to content

Commit

Permalink
Moved some TODOs to GitHub issue #15, deleted obsolete TODOs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Boereck committed Jul 4, 2018
1 parent f0a119d commit f136a03
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import static extension java.util.Objects.*
*/
class ArrayExtensions {

// TODO make class and forEach method public when API is documented and tested throughly for edge cases

private new() {
throw new IllegalStateException()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,13 @@ import java.util.stream.StreamSupport
* The class is not intended to be instantiated.
*/
final class PrimitiveIteratorExtensions {

// static def OptionalInt reduce(PrimitiveIterator.OfInt,IntBinaryOperator op)
// static def int reduce(PrimitiveIterator.OfInt, int identity, IntBinaryOperator op)


// * min,
// * max,
// * average,
// * sum​,
// * count,

// * anyMatch(XXXPredicate),
// * allMatch(XXXPredicate)/noneMatch(XXXPredicate)
// * findFirst​(XXXPredicate)
// * findFirst
// * filter(XXXPredicate)

private new() {
throw new IllegalStateException("PrimitiveIteratorExtensions not intended to be instantiated")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public final class OptionalExtensions {
private OptionalExtensions() {
throw new IllegalStateException("OptionalExtensions is not allowed to be instantiated");
}
// TODO is any of the following functionality actually usefull???
// TODO is any of the following functionality actually useful???

// /**
// * This function is basically a factory function for {@link Optional},
Expand Down

0 comments on commit f136a03

Please sign in to comment.