Skip to content

Instantly share code, notes, and snippets.

@hofiorg
Created August 12, 2014 09:35
Show Gist options
  • Save hofiorg/a1cfed89e92226390716 to your computer and use it in GitHub Desktop.
Save hofiorg/a1cfed89e92226390716 to your computer and use it in GitHub Desktop.
dart - iterate a collection with where
main() {
List mycollection = ['a', 'ab', 'abc', 'abcd', 'abcde'];
mycollection.where((c) => c.contains('d'))
.forEach((c) => print(c));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment