Kit.Core/LibExternal/System.Reactive/Internal/IEvaluatableObservable.cs

12 lines
334 B
C#

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT License.
// See the LICENSE file in the project root for more information.
namespace System.Reactive
{
internal interface IEvaluatableObservable<out T>
{
IObservable<T> Eval();
}
}