<PackageReference Include="System.Reactive" Version="6.0.0" />

Generate<TState, TResult>

static class Generate<TState, TResult>
using System.Collections.Generic; using System.Linq; using System.Collections.Generic; using System.Linq; using System.Runtime.CompilerServices; namespace System.Reactive.Linq.ObservableImpl { } namespace System.Reactive.Linq.ObservableImpl { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(new byte[] { 0, 1, 1, 1, 1, 1, 1, 1 })] internal sealed class ToLookup<[System.Runtime.CompilerServices.Nullable(2)] TSource, [System.Runtime.CompilerServices.Nullable(2)] TKey, [System.Runtime.CompilerServices.Nullable(2)] TElement> : Producer<ILookup<TKey, TElement>, ToLookup<TSource, TKey, TElement>._> { [System.Runtime.CompilerServices.Nullable(new byte[] { 0, 1, 1, 1, 1 })] internal sealed class _ : Sink<TSource, ILookup<TKey, TElement>> { private readonly Func<TSource, TKey> _keySelector = parent._keySelector; private readonly Func<TSource, TElement> _elementSelector = parent._elementSelector; private Lookup<TKey, TElement> _lookup = new Lookup<TKey, TElement>(parent._comparer); public _(ToLookup<TSource, TKey, TElement> parent, IObserver<ILookup<TKey, TElement>> observer) : base(observer) { } public override void OnNext(TSource value) { try { _lookup.Add(_keySelector(value), _elementSelector(value)); } catch (Exception error) { Cleanup(); ForwardOnError(error); } } public override void OnError(Exception error) { Cleanup(); ForwardOnError(error); } public override void OnCompleted() { Lookup<TKey, TElement> lookup = _lookup; Cleanup(); Lookup<TKey, TElement> lookup; ForwardOnNext(lookup); ForwardOnCompleted(); } private void Cleanup() { _lookup = null; } } private readonly IObservable<TSource> _source = source; private readonly Func<TSource, TKey> _keySelector = keySelector; private readonly Func<TSource, TElement> _elementSelector = elementSelector; private readonly IEqualityComparer<TKey> _comparer = comparer; public ToLookup(IObservable<TSource> source, Func<TSource, TKey> keySelector, Func<TSource, TElement> elementSelector, IEqualityComparer<TKey> comparer) { } [return: System.Runtime.CompilerServices.Nullable(new byte[] { 1, 0, 0, 0 })] protected override _ CreateSink(IObserver<ILookup<TKey, TElement>> observer) { return new _(this, observer); } protected override void Run([System.Runtime.CompilerServices.Nullable(new byte[] { 1, 0, 0, 0 })] _ sink) { sink.Run(_source); } } }