Stream() API support for Array
Opened this issue · 2 comments
Umesh606 commented
String[] stringArray = {"A,B","B,A","C,D","C,B","A,V"};
stringArray.stream() ------>> Cannot invoke stream() on the array type String[]
is it not good to have streaming on Array as well? :)
xerZV commented
try
import java.util.Arrays;
......
Arrays.stream(stringArray)
Umesh606 commented
great. cheers. :)