Skip to content

Instantly share code, notes, and snippets.

@aruld
Created October 19, 2011 18:30
Show Gist options
  • Select an option

  • Save aruld/1299218 to your computer and use it in GitHub Desktop.

Select an option

Save aruld/1299218 to your computer and use it in GitHub Desktop.
Dart forEach() on a List/Set
main() {
List<String> list = new List<String>();
list.add('one');
list.add('two');
list.add('twelve');
list.forEach((element) => print(element));
Set<String> set = Set.from(list);
set.forEach((element) => print(element));
}
@alperenarc

alperenarc commented Dec 7, 2020

Copy link
Copy Markdown

You can use set.forEach(print) instead of set.forEach((element) => print(element))

@yeicobF

yeicobF commented May 13, 2021

Copy link
Copy Markdown

Great!

@luigi-cuomo-3r

Copy link
Copy Markdown

Awesome!

@jfcompliasset

Copy link
Copy Markdown

We still use it in 2021, thanks man!

@icgoogo

icgoogo commented Oct 7, 2021

Copy link
Copy Markdown

i think we should avoid using set for variable name

@gulsenkeskin

Copy link
Copy Markdown

BIG thanks

@Shuusan

Shuusan commented Feb 21, 2022

Copy link
Copy Markdown

ありがとうございます!!!!!!!

@amirul12

Copy link
Copy Markdown

COOL

@GenaroGonzalezz

Copy link
Copy Markdown

Nice, thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment