LINQ extension methods
LINQ 를 직접 코드에 쓸 수 있게 해주는 확장 메소드들을 정리해보았습니다.
- Aggregate
- All
- Any
- AsEnumerable
- AsParallel
- AsQueryable
- Average
- Cast
- Concat
- Contains
- Count
- DefaultIfEmpty
- Distinct
- ElementAt
- ElementAtOrDefault
- Except
- First
- FirstOrDefault
- GroupBy
- GroupJoin
- Intersect
- Join
- Last
- LastOrDefault
- Max
- Min
- OfType
- OrderBy
- OrderByDescending
- Reverse
- Select
- SelectMany
- SequenceEqual
- Single
- SingleOrDefault
- Skip
- SkipWhile
- Sum
- Take
- TakeWhile
- ToArray
- ToDictionary
- ToList
- ToLookup
- Union
- Where
- Zip
Aggregate
- 각 요소에 메서드를 적용합니다.
- 시퀀스동안 이전 요소들을 집계합니다.
- 지정된 시드값은 초기 누산기 값으로 사용됩니다
- 지정된 함수는 결과 값을 선택하는데 사용됩니다.
- 쉽게 sum 과 같은 특정한 메소드를 구현할 수 있습니다.
example
// 1. Default form
public static TSource Aggregate<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TSource,TSource> func);
int[] sumArray = { 1, 2, 3, 4, 5 };
int result = sumArray.Aggregate((sum, next) => sum + next);
// sum : 0, next : 1 => 1
// sum : 1, next : 2 => 3
// sum : 3, next : 3 => 6
// sum : 6, next : 4 => 10
// sum : 10, next : 5 => 15
// 2. With seed value
public static TAccumulate Aggregate<TSource,TAccumulate> (this System.Collections.Generic.IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate,TSource,TAccumulate> func);
int[] sumArray = { 1, 2, 3, 4, 5 };
int result = sumArray.Aggregate(5, (sum, next) => sum + next);
// sum : 5, next : 1 => 6
// sum : 6, next : 2 => 8
// sum : 8, next : 3 => 11
// sum : 11, next : 4 => 15
// sum : 15, next : 5 => 20
// 3. With result Selector
public static TResult Aggregate<TSource,TAccumulate,TResult> (this System.Collections.Generic.IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate,TSource,TAccumulate> func, Func<TAccumulate,TResult> resultSelector);
int[] sumArray = { 1, 2, 3, 4, 5 };
int result = sumArray.Aggregate(3, (sum, next) => next > 2 ? sum + next : sum, result => result%2);
// sum : 3, next : 1 => 3
// sum : 3, next : 2 => 3
// sum : 3, next : 3 => 6
// sum : 6, next : 4 => 10
// sum : 10, next : 5 => 15
// result = 10 % 2
All
- 한 콜렉션 안의 모든 요소가 특정한 조건에 맞는지 알려줍니다.
example
public static bool All<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
int[] sumArray = { 1, 2, 3, 4, 5 };
bool isBiggerThanZero = sumArray.All(element => element > 0);
// true
bool isBiggerThanZeroOnEvens = (from number in sumArray
where number%2 == 0
select number).All(element => elment > 0);
// IEnumerable returnad with { 2, 4 } and all true
Any
- 한 콜렉션 안의 최소 하나 이상의 요소가 특정한 조건에 맞는지 알려줍니다.
example
public static bool Any<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
int[] sumArray = { 1, 2, 3, 4, 5 };
bool isBiggerThanFive = sumArray.Any(element => element > 5);
// false
bool isBiggerThanFour = sumArray.Any(element => element > 4);
// true
AsEnumerable
- IEnumerable 에 상응하는 특별한 타입으로 캐스팅 할 수 있게 해줍니다.
example
public static System.Collections.Generic.IEnumerable<TSource> AsEnumerable<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
int[] sumArray = {1, 2, 3, 4, 5 };
var query = sumArray.AsEnumerable();
foreach (var element in query)
{
}
AsParallel
- 병렬 연산으로 실행 될수 있게 해줍니다.
example
int[] sumArray = {1, 2, 3, 4, 5 };
int sum = sumArray.AsRarallel().Sum();
참고사이트
- https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable?redirectedfrom=MSDN&view=netframework-4.8#methods
- https://www.dotnetperls.com/linq