Array

Undocumented in source.

Constructors

this
this(AllocatorWrapperOf!AllocT alloc)
Undocumented in source.

Destructor

~this
~this()
Undocumented in source.

Postblit

this(this)
this(this)
Undocumented in source.

Members

Functions

compactMemory
void compactMemory()
Undocumented in source. Be warned that the author may not have intended to support it.
getAt
inout(T) getAt(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
insertAt
void insertAt(size_t index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.
opDollar
size_t opDollar()
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
inout(T)[] opIndex()
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
inout(T) opIndex(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
opSlice
inout(T)[] opSlice(size_t start, size_t end)
Undocumented in source. Be warned that the author may not have intended to support it.
opSliceAssign
void opSliceAssign(T value, size_t start, size_t end)
Undocumented in source. Be warned that the author may not have intended to support it.
opSliceAssign
void opSliceAssign(T[] value, size_t start, size_t end)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(T value)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(T[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(const(T)[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
removeAt
void removeAt(size_t index, T dest)
Undocumented in source. Be warned that the author may not have intended to support it.
removeAt
T removeAt(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
reserve
void reserve(size_t amount)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

capacity
size_t capacity [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
length
size_t length [@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
length
size_t length [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
range
inout(T)[] range [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

import libd.algorithm : isCollection, isInputRange;
static assert(isCollection!(Array!int, int));
static assert(isInputRange!(typeof(Array!int.range())));

const GrowthFirstStep = DefaultGrowth.grow(0);
const JustBeforeFirstStep = GrowthFirstStep - 1;

Array!int a;
a.length = 0;
a.length = JustBeforeFirstStep;
// assert(a.length == 7);
assert(a.capacity == GrowthFirstStep);
a.length = 5;
assert(a.length == 5);
//assert(a.capacity == GrowthFirstStep);
a.compactMemory();
assert(a.capacity == a.length);
a.reserve(2);
assert(a.length == 5);
assert(a.capacity == 7); // .reserve bypasses the Growth specifier by default.
a.reserve(1);
a.length = 2;
assert(a.length == 2);
assert(a.capacity == 4);
a.__xdtor();
assert(a._slice is null);

a = Array!int.init;
a.put(1);
a.put([2, 3]);
assert(a.length == 3);
assert(a[0] == 1);
assert(a[1..3] == [2, 3]);
a[1] = 4;
assert(a[1] == 4);
assert(a.removeAt(1) == 4);
assert(a.length == 2);
assert(a[1] == 3);
a.insertAt(1, 2);
assert(a.length == 3);
assert(a[1] == 2);
assert(a[2] == 3);

int sum;
foreach(num; a.range)
    sum += num;
assert(sum == 6);

Meta