Executes a transformation function on each element of a collection and returns the results in a new List.
More...
|
static IList | Transform (ICollection coll, FunctionDelegate< object > func) |
| Executes a function on each item in a ICollection and returns the results in a new IList. More...
|
|
static IList< T > | Cast< T > (ICollection coll) |
| Executes a function on each item in a ICollection and returns the results in a new IList. More...
|
|
static IList< TOut > | Cast< TIn, TOut > (ICollection< TIn > coll) |
| Executes a function on each item in a ICollection{TIn} and returns the results in a new IList{TOut}. More...
|
|
static IList< T > | Transform< T > (IList< T > list, FunctionDelegate< T > function) |
| Executes a function on each item in a IList{T} and returns the results in a new IList{T}. More...
|
|
static IList< TResult > | Transform< T, TResult > (IList< T > list, FunctionDelegate< T, TResult > function) |
| Executes a function on each item in a IList{T} and returns the results in a new IList{TResult}. More...
|
|
static void | Apply (ICollection coll, FunctionDelegate< object > func) |
| Executes a function on each item in a ICollection but does not accumulate the result. More...
|
|
static void | Apply< T > (IEnumerable< T > coll, FunctionDelegate< T > func) |
| Executes a function on each item in a IEnumerable{T} but does not accumulate the result. More...
|
|
static IList | Select (ICollection coll, FunctionDelegate< object, bool > func) |
| Executes a function on each item in a ICollection and collects all the entries for which the result of the function is equal to true . More...
|
|
static IList< T > | Select< T > (IEnumerable< T > items, FunctionDelegate< T, bool > func) |
| Executes a function on each item in a ICollection and collects all the entries for which the result of the function is equal to true . More...
|
|
static TOut[] | Cast< TIn, TOut > (TIn[] array) |
| Copies T s in an array to an object array More...
|
|
Executes a transformation function on each element of a collection and returns the results in a new List.
static void NetTopologySuite.Utilities.CollectionUtil.Apply |
( |
ICollection |
coll, |
|
|
FunctionDelegate< object > |
func |
|
) |
| |
|
static |
Executes a function on each item in a ICollection but does not accumulate the result.
- Parameters
-
Executes a function on each item in a IEnumerable{T} but does not accumulate the result.
- Parameters
-
static IList<T> NetTopologySuite.Utilities.CollectionUtil.Cast< T > |
( |
ICollection |
coll | ) |
|
|
static |
Executes a function on each item in a ICollection and returns the results in a new IList.
- Parameters
-
- Returns
static IList<TOut> NetTopologySuite.Utilities.CollectionUtil.Cast< TIn, TOut > |
( |
ICollection< TIn > |
coll | ) |
|
|
static |
Executes a function on each item in a ICollection{TIn} and returns the results in a new IList{TOut}.
- Parameters
-
- Returns
static TOut [] NetTopologySuite.Utilities.CollectionUtil.Cast< TIn, TOut > |
( |
TIn[] |
array | ) |
|
|
static |
Copies T s in an array to an object array
- Template Parameters
-
- Parameters
-
- Returns
- An array of objects
delegate T NetTopologySuite.Utilities.CollectionUtil.FunctionDelegate< T > |
( |
T |
obj | ) |
|
- Template Parameters
-
- Parameters
-
- Returns
delegate TResult NetTopologySuite.Utilities.CollectionUtil.FunctionDelegate< T, TResult > |
( |
T |
obj | ) |
|
- Template Parameters
-
- Parameters
-
- Returns
static IList NetTopologySuite.Utilities.CollectionUtil.Select |
( |
ICollection |
coll, |
|
|
FunctionDelegate< object, bool > |
func |
|
) |
| |
|
static |
Executes a function on each item in a ICollection and collects all the entries for which the result of the function is equal to true
.
- Parameters
-
- Returns
Executes a function on each item in a ICollection and collects all the entries for which the result of the function is equal to true
.
- Parameters
-
- Returns
static IList NetTopologySuite.Utilities.CollectionUtil.Transform |
( |
ICollection |
coll, |
|
|
FunctionDelegate< object > |
func |
|
) |
| |
|
static |
Executes a function on each item in a ICollection and returns the results in a new IList.
- Parameters
-
- Returns
Executes a function on each item in a IList{T} and returns the results in a new IList{T}.
- Parameters
-
- Returns
Executes a function on each item in a IList{T} and returns the results in a new IList{TResult}.
- Parameters
-
- Returns
The documentation for this class was generated from the following file:
- NetTopologySuite/NetTopologySuite/Utilities/CollectionUtil.cs