I want to do this:
Foo[] foos = new Foo[6];
Blah[] blahs = new Blah[6];
.....
Arrays.stream(foos)
.mapIndex((Foo foo,int index) -> "" + foo[index] + blahs[index])
.collect(...)
Is there any standard way to do this? Maybe a standard jdk map "mapindex" function?