jellyfin/RSSDP/IEnumerableExtensions.cs

35 lines
950 B
C#
Raw Normal View History

2019-01-12 15:41:08 -05:00
using System;
2016-10-29 18:22:20 -04:00
using System.Collections.Generic;
using System.Linq;
namespace Rssdp.Infrastructure
{
2019-01-12 15:41:08 -05:00
internal static class IEnumerableExtensions
{
public static IEnumerable<T> SelectManyRecursive<T>(this IEnumerable<T> source, Func<T, IEnumerable<T>> selector)
{
2020-06-20 04:35:29 -04:00
if (source == null)
{
throw new ArgumentNullException(nameof(source));
}
if (selector == null)
{
throw new ArgumentNullException(nameof(selector));
}
2016-10-29 18:22:20 -04:00
2019-01-07 18:24:34 -05:00
return !source.Any() ? source :
source.Concat(
source
.SelectMany(i => selector(i).EmptyIfNull())
.SelectManyRecursive(selector)
);
}
2016-10-29 18:22:20 -04:00
2019-01-07 18:24:34 -05:00
public static IEnumerable<T> EmptyIfNull<T>(this IEnumerable<T> source)
{
return source ?? Enumerable.Empty<T>();
}
}
2016-10-29 18:22:20 -04:00
}