For instance, parallel() before filter()
Stream.of(...)
.parallel()
.filter(...)
.forEach(...);
and parallel() after filter()
Stream.of(...)
.filter(...)
.parallel()
.forEach(...);
Does order of calling parallel() affect the stream?