Similar to Stream.findFirst(), is there a way to write Stream.findNth()?
Stream.findFirst()
Stream.findNth()
I\'m practicing Java 8 by rewriting some legacy code. And, I\'m wo
OptionalInt result = stream.skip(n-1).findFirst();