generally, the only case i would use java stream a...
# announcements
v
generally, the only case i would use java stream api is if i have some very important algorithm that i absolutely want to perform on FJP and use 100% of processing power just to get it done real quick and i dont care if it will stall jvms other tasks... (if you fill fjp with lots of work basically you will hit the performance of other things going on in your vm) this is only case i can think of when i will use javas stream api... (maybe i'm missing other valuable cases anyone?)