mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Added constructors from List<T>.
This commit is contained in:
@@ -44,6 +44,11 @@ namespace Extents
|
||||
backend = new List<Tuple<uint, uint>>();
|
||||
}
|
||||
|
||||
public ExtentsUInt(List<Tuple<uint, uint>> list)
|
||||
{
|
||||
backend = list.OrderBy(t => t.Item1).ToList();
|
||||
}
|
||||
|
||||
public int Count { get { return backend.Count; } }
|
||||
|
||||
public void Add(uint item)
|
||||
|
||||
Reference in New Issue
Block a user