Hey everyone, I have the following list in my code
public class order {
private float amount;
public float getAmount() {
return this.amount;
}
}
and in main function I have the following list
List<List<Order>> ordersList
I want to iterate the list through Streams in java 8 in order to calculate the total amount of all the orders. How do I do that? Please help