Skip to content

Instantly share code, notes, and snippets.

@andevsoftware
Last active February 28, 2016 08:17
Show Gist options
  • Select an option

  • Save andevsoftware/cea78dd663e5e014399a to your computer and use it in GitHub Desktop.

Select an option

Save andevsoftware/cea78dd663e5e014399a to your computer and use it in GitHub Desktop.
TSCore\Data\Collection - transform method
var collection = new TSCore.Data.Collection<number>([1, 2, 3, 4, 5]);
collection.transform((item: number, key: number) => {
return item * 2;
});
collection.toArray();
// [2, 4, 6, 8, 10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment