Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I suggest changing the constructors visibility from
public
toprivate
- or better remove it.It is not tested, and there is no need to implement it.
The required methods are not even consistent to the
IntStream
interface (e.gIntStream.of
takesint
varargs, not anint[]
, and the existence of methods that simply doesn't exist in the interface), so it's completely wrong to claim that we're using theStream
API, or implementing anIntStream
. What is being done is more like implementing anIntStream
-like class with a custom API.