Search
IEnumerable.select Method
See Also
 






Projects each element of a sequence into a new form.

Namespace: MindFusion.Common.Collections
File: IEnumerable.js

 Syntax

JavaScript  Copy Code

function select (selector)

 Parameters

selector

function. A transform function to invoke on each element.

 Return Value

IEnumerable. An collection whose elements are the resultof invoking the transform function on each element.

 See Also