Interface IFitsValueReader<T>
- Namespace
- FitsModel.FitsStream.Reader.Values
- Assembly
- FitsModel.dll
Base interface for reading values of type T
as they are parsed from a FitsDataBlock.
public interface IFitsValueReader<T> where T : INumber<T>
Type Parameters
T
Methods
ReadValue(T)
Reads the specified value and processes it according to the implementation.
void ReadValue(T value)
Parameters
value
TThe value to be read and processed.
ReadValues(IEnumerable<T>)
Reads a collection of values and processes them according to the implementation.
void ReadValues(IEnumerable<T> values)
Parameters
values
IEnumerable<T>the values to be read and processed