System.Collections.Generic.IEnumerable.TakeUntilNone()

Here are the examples of the csharp api System.Collections.Generic.IEnumerable.TakeUntilNone() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : EnumerableExtensions.cs
with MIT License
from JohannesMoersch

public static async Task<Option<TValue[]>> TakeUntilNone<TValue>(this Task<IEnumerable<Option<TValue>>> source)
			=> (await source).TakeUntilNone();