Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -504,35 +504,6 @@ private void OnCompleted(int index)
}
}

private static bool All(bool[] values)
{
foreach (var value in values)
{
if (!value)
{
return false;
}
}

return true;
}

private static bool AllExcept(bool[] values, int index)
{
for (var i = 0; i < values.Length; i++)
{
if (i != index)
{
if (!values[i])
{
return false;
}
}
}

return true;
}

private sealed class SourceObserver : IObserver<TSource>
{
private readonly _ _parent;
Expand Down