Open alexbezhan opened 12 years ago
Hi and thank you for great plugin. I faced the following issue. I have the 'for' loop and want to break it(use 'break' keyword) like following:
for Ingredient ingredient: ingredients ingredient.product.get(); if (_index < 4 || ingredients.size() == 4) {
for Ingredient ingredient: ingredients
`} else if (_index == 4){
} else { break; }
} else {
}
AFAIK 'for' loop generates render method callback. How can I break it ? Thanks.
Sorry maybe it would be better to use gist for code example: https://gist.github.com/2699837
You can use "return" instead, but do remember there must be no space between the "}" and "return".
Thanks much.
Hi and thank you for great plugin. I faced the following issue. I have the 'for' loop and want to break it(use 'break' keyword) like following:
for Ingredient ingredient: ingredients
ingredient.product.get();`} else if (_index == 4){
} else {
break;}
AFAIK 'for' loop generates render method callback. How can I break it ? Thanks.