using System.Collections.Generic;
namespace Cobilas.Collections.Generic {
/// Represents a long, read-only, strongly typed collection of elements.
/// The type of the elements.
///
/// 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 IReadOnlyLongCollection : IEnumerable
{
/// Gets the number of elements in the collection.
long Count { get; }
}
}