using System.Collections.Generic;
namespace MatFileHandler
{
///
/// Matlab's sparse array.
///
/// Element type.
/// Possible values of T: Double, Complex, Boolean.
public interface ISparseArrayOf : IArrayOf
where T : struct
{
///
/// Gets a dictionary mapping indices to values.
///
new IReadOnlyDictionary<(int row, int column), T> Data { get; }
}
}