-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIOutputRange.cs
More file actions
18 lines (16 loc) · 877 Bytes
/
IOutputRange.cs
File metadata and controls
18 lines (16 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System.Collections.Generic;
namespace RapidField.SolidInstruments.SignalProcessing
{
/// <summary>
/// Represents a contiguous collection of discrete units of output from an <see cref="IChannel" />.
/// </summary>
/// <typeparam name="T">
/// The type of the associated channel's output value.
/// </typeparam>
public interface IOutputRange<T> : IReadOnlyCollection<IDiscreteUnitOfOutput<T>>, IReadOnlyList<IDiscreteUnitOfOutput<T>>
{
}
}