Rename SList front property into insertFront

This commit is contained in:
2016-12-02 10:50:54 +01:00
parent dd3becf6b7
commit 7c36dbb8f0
2 changed files with 49 additions and 82 deletions

View File

@ -43,7 +43,7 @@ class Vector(T)
private alias ElementType = typeof(data[0].vector[0]);
private this(V data, in size_t a, in size_t b)
protected this(V data, in size_t a, in size_t b)
{
this.data = data;
start = a;
@ -709,9 +709,11 @@ class Vector(T)
theAllocator.dispose(v1);
}
private T[] vector;
/// Internal representation.
protected T[] vector;
private IAllocator allocator;
/// The allocator.
protected IAllocator allocator;
}
///