资 源 简 介
IEnumerable extensions for direct enumeration without using foreach:
```
IEnumerable Each
(
this IEnumerable enumerable,
Func xFunc,
Func xsFunc
)
IEnumerable EachWithIndex
(
this IEnumerable enumerable,
Func xFunc,
Func xsFunc
)
IEnumerable Each
(
this IEnumerable enumerable,
Func func
)
IEnumerable EachWithIndex
(
this IEnumerable enumerable,
Func func
)
void Each
(
this IEnumerable enumerable,
Action action
)
void EachWithIndex
(
this IEnumerable enumerable,
Action action
)
```
IEnumerable extensions for selecting unique values (in the style of uniq(1)):
```
/**
* Only the first of each group of consecutive i