namespace Cobilas.Collections.Generic {
/// Represents a long read-only collection of elements that can be accessed by index.
/// The type of elements in the read-only list.
/// This type parameter is covariant. That is, you can use either the type you specified or any type that
/// is more derived. For more information about covariance and contravariance, see Covariance and Contravariance
/// in Generics.
///
public interface IReadOnlyLongList : IReadOnlyLongCollection
{
/// Gets the element at the specified index in the read-only list.
T this[long index] { get; }
}
}