1
0

Implement FILL

This commit is contained in:
otya128
2016-12-18 19:35:37 +09:00
parent c5b0905b42
commit 77811703f9
2 changed files with 48 additions and 0 deletions

View File

@@ -517,6 +517,16 @@ class Array(T)
array = array[0..index] ~ ary.array ~ array[index + 1..$];
dim[0] = cast(int)array.length;
}
protected this(Array!T a)
{
this.dim = a.dim;
this.dimCount = a.dimCount;
this.array = a.array.dup;
}
Array!T dup()
{
return new Array!T(this);
}
}
struct ArrayReference(T)