mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00

Previously, std.array.join with a separator would check whether it needed to add the separator on each iteration of the loop. With this change, the check is unnecessary because the first element is appended before the loop, then the loop just adds the separator and next element each iteration. This improves the code significantly in the case of a non-forward RoR because we don't need to know the length anymore. It's simpler, and will be slightly faster.
2771 lines
77 KiB
D
2771 lines
77 KiB
D
// Written in the D programming language.
|
|
/**
|
|
Functions and types that manipulate built-in arrays.
|
|
|
|
Copyright: Copyright Andrei Alexandrescu 2008- and Jonathan M Davis 2011-.
|
|
|
|
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
|
|
|
|
Authors: $(WEB erdani.org, Andrei Alexandrescu) and Jonathan M Davis
|
|
|
|
Source: $(PHOBOSSRC std/_array.d)
|
|
*/
|
|
module std.array;
|
|
|
|
import core.memory, core.bitop;
|
|
import std.algorithm, std.ascii, std.conv, std.exception, std.range, std.string,
|
|
std.traits, std.typecons, std.typetuple, std.uni, std.utf;
|
|
import std.c.string : memcpy;
|
|
version(unittest) import core.exception, std.stdio;
|
|
|
|
/**
|
|
Returns a newly-allocated dynamic array consisting of a copy of the
|
|
input range, static array, dynamic array, or class or struct with an
|
|
$(D opApply) function $(D r). Note that narrow strings are handled as
|
|
a special case in an overload.
|
|
|
|
Example:
|
|
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
auto a = array([1, 2, 3, 4, 5][]);
|
|
assert(a == [ 1, 2, 3, 4, 5 ]);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
ForeachType!Range[] array(Range)(Range r)
|
|
if (isIterable!Range && !isNarrowString!Range)
|
|
{
|
|
alias ForeachType!Range E;
|
|
static if (hasLength!Range)
|
|
{
|
|
if(r.length == 0) return null;
|
|
|
|
auto result = uninitializedArray!(Unqual!(E)[])(r.length);
|
|
|
|
size_t i = 0;
|
|
foreach (e; r)
|
|
{
|
|
// hacky
|
|
static if (is(typeof(e.opAssign(e))))
|
|
{
|
|
// this should be in-place construction
|
|
emplace!E(result.ptr + i, e);
|
|
}
|
|
else
|
|
{
|
|
result[i] = e;
|
|
}
|
|
i++;
|
|
}
|
|
return cast(E[])result;
|
|
}
|
|
else
|
|
{
|
|
auto a = appender!(E[])();
|
|
foreach (e; r)
|
|
{
|
|
a.put(e);
|
|
}
|
|
return a.data;
|
|
}
|
|
}
|
|
|
|
/**
|
|
Convert a narrow string to an array type that fully supports random access.
|
|
This is handled as a special case and always returns a $(D dchar[]),
|
|
$(D const(dchar)[]), or $(D immutable(dchar)[]) depending on the constness of
|
|
the input.
|
|
*/
|
|
ElementType!String[] array(String)(String str) if (isNarrowString!String)
|
|
{
|
|
return to!(typeof(return))(str);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
static struct TestArray { int x; string toString() { return .to!string(x); } }
|
|
|
|
static struct OpAssign
|
|
{
|
|
uint num;
|
|
this(uint num) { this.num = num; }
|
|
|
|
// Templating opAssign to make sure the bugs with opAssign being
|
|
// templated are fixed.
|
|
void opAssign(T)(T rhs) { this.num = rhs.num; }
|
|
}
|
|
|
|
static struct OpApply
|
|
{
|
|
int opApply(int delegate(ref int) dg)
|
|
{
|
|
int res;
|
|
foreach(i; 0..10)
|
|
{
|
|
res = dg(i);
|
|
if(res) break;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
}
|
|
|
|
auto a = array([1, 2, 3, 4, 5][]);
|
|
//writeln(a);
|
|
assert(a == [ 1, 2, 3, 4, 5 ]);
|
|
|
|
auto b = array([TestArray(1), TestArray(2)][]);
|
|
//writeln(b);
|
|
|
|
class C
|
|
{
|
|
int x;
|
|
this(int y) { x = y; }
|
|
override string toString() const { return .to!string(x); }
|
|
}
|
|
auto c = array([new C(1), new C(2)][]);
|
|
//writeln(c);
|
|
|
|
auto d = array([1.0, 2.2, 3][]);
|
|
assert(is(typeof(d) == double[]));
|
|
//writeln(d);
|
|
|
|
auto e = [OpAssign(1), OpAssign(2)];
|
|
auto f = array(e);
|
|
assert(e == f);
|
|
|
|
assert(array(OpApply.init) == [0,1,2,3,4,5,6,7,8,9]);
|
|
assert(array("ABC") == "ABC"d);
|
|
assert(array("ABC".dup) == "ABC"d.dup);
|
|
}
|
|
|
|
//Bug# 8233
|
|
unittest
|
|
{
|
|
assert(array("hello world"d) == "hello world"d);
|
|
immutable a = [1, 2, 3, 4, 5];
|
|
assert(array(a) == a);
|
|
const b = a;
|
|
assert(array(b) == a);
|
|
|
|
//To verify that the opAssign branch doesn't get screwed up by using Unqual.
|
|
struct S
|
|
{
|
|
ref S opAssign(S)(const ref S rhs)
|
|
{
|
|
i = rhs.i;
|
|
return this;
|
|
}
|
|
|
|
int i;
|
|
}
|
|
|
|
foreach(T; TypeTuple!(S, const S, immutable S))
|
|
{
|
|
auto arr = [T(1), T(2), T(3), T(4)];
|
|
assert(array(arr) == arr);
|
|
}
|
|
}
|
|
|
|
/**
|
|
Returns a newly allocated associative array out of elements of the input range,
|
|
which must be a range of tuples (Key, Value).
|
|
|
|
Example:
|
|
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
auto a = assocArray(zip([0, 1, 2], ["a", "b", "c"]));
|
|
assert(a == [0:"a", 1:"b", 2:"c"]);
|
|
auto b = assocArray([ tuple("foo", "bar"), tuple("baz", "quux") ]);
|
|
assert(b == ["foo":"bar", "baz":"quux"]);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
|
|
auto assocArray(Range)(Range r)
|
|
if (isInputRange!Range && isTuple!(ElementType!Range)
|
|
&& ElementType!Range.length == 2)
|
|
{
|
|
alias ElementType!Range.Types[0] KeyType;
|
|
alias ElementType!Range.Types[1] ValueType;
|
|
ValueType[KeyType] aa;
|
|
foreach (t; r)
|
|
aa[t[0]] = t[1];
|
|
return aa;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
static assert(!__traits(compiles, [ tuple("foo", "bar", "baz") ].assocArray()));
|
|
static assert(!__traits(compiles, [ tuple("foo") ].assocArray()));
|
|
static assert(__traits(compiles, [ tuple("foo", "bar") ].assocArray()));
|
|
|
|
auto aa1 = [ tuple("foo", "bar"), tuple("baz", "quux") ].assocArray();
|
|
assert(is(typeof(aa1) == string[string]));
|
|
assert(aa1 == ["foo":"bar", "baz":"quux"]);
|
|
|
|
auto aa2 = zip([0, 1, 2], ["a", "b", "c"]).assocArray();
|
|
assert(is(typeof(aa2) == string[int]));
|
|
assert(aa2 == [0:"a", 1:"b", 2:"c"]);
|
|
}
|
|
|
|
private template blockAttribute(T)
|
|
{
|
|
static if (hasIndirections!(T) || is(T == void))
|
|
{
|
|
enum blockAttribute = 0;
|
|
}
|
|
else
|
|
{
|
|
enum blockAttribute = GC.BlkAttr.NO_SCAN;
|
|
}
|
|
}
|
|
unittest {
|
|
static assert(!(blockAttribute!void & GC.BlkAttr.NO_SCAN));
|
|
}
|
|
|
|
// Returns the number of dimensions in an array T.
|
|
private template nDimensions(T)
|
|
{
|
|
static if(isArray!T)
|
|
{
|
|
enum nDimensions = 1 + nDimensions!(typeof(T.init[0]));
|
|
}
|
|
else
|
|
{
|
|
enum nDimensions = 0;
|
|
}
|
|
}
|
|
|
|
unittest {
|
|
static assert(nDimensions!(uint[]) == 1);
|
|
static assert(nDimensions!(float[][]) == 2);
|
|
}
|
|
|
|
/**
|
|
Returns a new array of type $(D T) allocated on the garbage collected heap
|
|
without initializing its elements. This can be a useful optimization if every
|
|
element will be immediately initialized. $(D T) may be a multidimensional
|
|
array. In this case sizes may be specified for any number of dimensions from 1
|
|
to the number in $(D T).
|
|
|
|
Examples:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
---
|
|
double[] arr = uninitializedArray!(double[])(100);
|
|
assert(arr.length == 100);
|
|
|
|
double[][] matrix = uninitializedArray!(double[][])(42, 31);
|
|
assert(matrix.length == 42);
|
|
assert(matrix[0].length == 31);
|
|
---
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
auto uninitializedArray(T, I...)(I sizes)
|
|
if(allSatisfy!(isIntegral, I))
|
|
{
|
|
return arrayAllocImpl!(false, T, I)(sizes);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
double[] arr = uninitializedArray!(double[])(100);
|
|
assert(arr.length == 100);
|
|
|
|
double[][] matrix = uninitializedArray!(double[][])(42, 31);
|
|
assert(matrix.length == 42);
|
|
assert(matrix[0].length == 31);
|
|
}
|
|
|
|
/**
|
|
Returns a new array of type $(D T) allocated on the garbage collected heap.
|
|
Initialization is guaranteed only for pointers, references and slices,
|
|
for preservation of memory safety.
|
|
*/
|
|
auto minimallyInitializedArray(T, I...)(I sizes) @trusted
|
|
if(allSatisfy!(isIntegral, I))
|
|
{
|
|
return arrayAllocImpl!(true, T, I)(sizes);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
double[] arr = minimallyInitializedArray!(double[])(100);
|
|
assert(arr.length == 100);
|
|
|
|
double[][] matrix = minimallyInitializedArray!(double[][])(42);
|
|
assert(matrix.length == 42);
|
|
foreach(elem; matrix)
|
|
{
|
|
assert(elem.ptr is null);
|
|
}
|
|
}
|
|
|
|
private auto arrayAllocImpl(bool minimallyInitialized, T, I...)(I sizes)
|
|
if(allSatisfy!(isIntegral, I))
|
|
{
|
|
static assert(sizes.length >= 1,
|
|
"Cannot allocate an array without the size of at least the first " ~
|
|
" dimension.");
|
|
static assert(sizes.length <= nDimensions!T,
|
|
to!string(sizes.length) ~ " dimensions specified for a " ~
|
|
to!string(nDimensions!T) ~ " dimensional array.");
|
|
|
|
alias typeof(T.init[0]) E;
|
|
|
|
auto ptr = cast(E*) GC.malloc(sizes[0] * E.sizeof, blockAttribute!(E));
|
|
auto ret = ptr[0..sizes[0]];
|
|
|
|
static if(sizes.length > 1)
|
|
{
|
|
foreach(ref elem; ret)
|
|
{
|
|
elem = uninitializedArray!(E)(sizes[1..$]);
|
|
}
|
|
}
|
|
else static if(minimallyInitialized && hasIndirections!E)
|
|
{
|
|
ret[] = E.init;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
Implements the range interface primitive $(D empty) for built-in
|
|
arrays. Due to the fact that nonmember functions can be called with
|
|
the first argument using the dot notation, $(D array.empty) is
|
|
equivalent to $(D empty(array)).
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
auto a = [ 1, 2, 3 ];
|
|
assert(!a.empty);
|
|
assert(a[3 .. $].empty);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
|
|
@property bool empty(T)(in T[] a) @safe pure nothrow
|
|
{
|
|
return !a.length;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto a = [ 1, 2, 3 ];
|
|
assert(!a.empty);
|
|
assert(a[3 .. $].empty);
|
|
}
|
|
|
|
/**
|
|
Implements the range interface primitive $(D save) for built-in
|
|
arrays. Due to the fact that nonmember functions can be called with
|
|
the first argument using the dot notation, $(D array.save) is
|
|
equivalent to $(D save(array)). The function does not duplicate the
|
|
content of the array, it simply returns its argument.
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
auto a = [ 1, 2, 3 ];
|
|
auto b = a.save;
|
|
assert(b is a);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
|
|
@property T[] save(T)(T[] a) @safe pure nothrow
|
|
{
|
|
return a;
|
|
}
|
|
|
|
/**
|
|
Implements the range interface primitive $(D popFront) for built-in
|
|
arrays. Due to the fact that nonmember functions can be called with
|
|
the first argument using the dot notation, $(D array.popFront) is
|
|
equivalent to $(D popFront(array)). For $(GLOSSARY narrow strings),
|
|
$(D popFront) automaticaly advances to the next $(GLOSSARY code
|
|
point).
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
int[] a = [ 1, 2, 3 ];
|
|
a.popFront();
|
|
assert(a == [ 2, 3 ]);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
|
|
void popFront(A)(ref A a)
|
|
if (!isNarrowString!A && isDynamicArray!A && isMutable!A && !is(A == void[]))
|
|
{
|
|
assert(a.length, "Attempting to popFront() past the end of an array of "
|
|
~ typeof(a[0]).stringof);
|
|
a = a[1 .. $];
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto a = [ 1, 2, 3 ];
|
|
a.popFront();
|
|
assert(a == [ 2, 3 ]);
|
|
static assert(!__traits(compiles, popFront!(immutable int[])()));
|
|
static assert(!__traits(compiles, popFront!(void[])()));
|
|
}
|
|
|
|
// Specialization for narrow strings. The necessity of
|
|
// !isStaticArray!A suggests a compiler @@@BUG@@@.
|
|
void popFront(S)(ref S str) @trusted pure nothrow
|
|
if (isNarrowString!S && isMutable!S && !isStaticArray!S)
|
|
{
|
|
alias ElementEncodingType!S C;
|
|
assert(str.length, "Attempting to popFront() past the end of an array of " ~ C.stringof);
|
|
|
|
static if(is(Unqual!C == char))
|
|
{
|
|
immutable c = str[0];
|
|
if(c < 0x80)
|
|
{
|
|
//ptr is used to avoid unnnecessary bounds checking.
|
|
str = str.ptr[1 .. str.length];
|
|
}
|
|
else
|
|
{
|
|
import core.bitop;
|
|
auto msbs = 7 - bsr(~c);
|
|
if((msbs < 2) | (msbs > 6))
|
|
{
|
|
//Invalid UTF-8
|
|
msbs = 1;
|
|
}
|
|
str = str[msbs .. $];
|
|
}
|
|
}
|
|
else static if(is(Unqual!C == wchar))
|
|
{
|
|
immutable u = str[0];
|
|
str = str[1 + (u >= 0xD800 && u <= 0xDBFF) .. $];
|
|
}
|
|
else static assert(0, "Bad template constraint.");
|
|
}
|
|
|
|
version(unittest) C[] _eatString(C)(C[] str)
|
|
{
|
|
while(!str.empty)
|
|
str.popFront();
|
|
|
|
return str;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
string s1 = "\xC2\xA9hello";
|
|
s1.popFront();
|
|
assert(s1 == "hello");
|
|
wstring s2 = "\xC2\xA9hello";
|
|
s2.popFront();
|
|
assert(s2 == "hello");
|
|
string s3 = "\u20AC100";
|
|
|
|
foreach(S; TypeTuple!(string, wstring, dstring))
|
|
{
|
|
S str = "hello\U00010143\u0100\U00010143";
|
|
foreach(dchar c; ['h', 'e', 'l', 'l', 'o', '\U00010143', '\u0100', '\U00010143'])
|
|
{
|
|
assert(str.front == c);
|
|
str.popFront();
|
|
}
|
|
assert(str.empty);
|
|
}
|
|
|
|
static assert(!is(typeof(popFront!(immutable string))));
|
|
static assert(!is(typeof(popFront!(char[4]))));
|
|
|
|
enum checkCTFE = _eatString("ウェブサイト@La_Verité.com");
|
|
static assert(checkCTFE.empty);
|
|
enum checkCTFEW = _eatString("ウェブサイト@La_Verité.com"w);
|
|
static assert(checkCTFEW.empty);
|
|
}
|
|
|
|
/**
|
|
Implements the range interface primitive $(D popBack) for built-in
|
|
arrays. Due to the fact that nonmember functions can be called with
|
|
the first argument using the dot notation, $(D array.popBack) is
|
|
equivalent to $(D popBack(array)). For $(GLOSSARY narrow strings), $(D
|
|
popFront) automaticaly eliminates the last $(GLOSSARY code point).
|
|
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
int[] a = [ 1, 2, 3 ];
|
|
a.popBack();
|
|
assert(a == [ 1, 2 ]);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
|
|
void popBack(A)(ref A a)
|
|
if (isDynamicArray!A && !isNarrowString!A && isMutable!A && !is(A == void[]))
|
|
{
|
|
assert(a.length);
|
|
a = a[0 .. $ - 1];
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto a = [ 1, 2, 3 ];
|
|
a.popBack();
|
|
assert(a == [ 1, 2 ]);
|
|
static assert(!__traits(compiles, popBack!(immutable int[])));
|
|
static assert(!__traits(compiles, popBack!(void[])));
|
|
}
|
|
|
|
// Specialization for arrays of char
|
|
@trusted void popBack(A)(ref A a)
|
|
if(isNarrowString!A && isMutable!A)
|
|
{
|
|
assert(a.length, "Attempting to popBack() past the front of an array of " ~
|
|
typeof(a[0]).stringof);
|
|
a = a[0 .. $ - std.utf.strideBack(a, a.length)];
|
|
}
|
|
|
|
unittest
|
|
{
|
|
foreach(S; TypeTuple!(string, wstring, dstring))
|
|
{
|
|
S s = "hello\xE2\x89\xA0";
|
|
s.popBack();
|
|
assert(s == "hello");
|
|
S s3 = "\xE2\x89\xA0";
|
|
auto c = s3.back;
|
|
assert(c == cast(dchar)'\u2260');
|
|
s3.popBack();
|
|
assert(s3 == "");
|
|
|
|
S str = "\U00010143\u0100\U00010143hello";
|
|
foreach(dchar ch; ['o', 'l', 'l', 'e', 'h', '\U00010143', '\u0100', '\U00010143'])
|
|
{
|
|
assert(str.back == ch);
|
|
str.popBack();
|
|
}
|
|
assert(str.empty);
|
|
|
|
static assert(!__traits(compiles, popBack!(immutable S)));
|
|
}
|
|
}
|
|
|
|
/**
|
|
Implements the range interface primitive $(D front) for built-in
|
|
arrays. Due to the fact that nonmember functions can be called with
|
|
the first argument using the dot notation, $(D array.front) is
|
|
equivalent to $(D front(array)). For $(GLOSSARY narrow strings), $(D
|
|
front) automaticaly returns the first $(GLOSSARY code point) as a $(D
|
|
dchar).
|
|
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
int[] a = [ 1, 2, 3 ];
|
|
assert(a.front == 1);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
@property ref T front(T)(T[] a)
|
|
if (!isNarrowString!(T[]) && !is(T[] == void[]))
|
|
{
|
|
assert(a.length, "Attempting to fetch the front of an empty array of " ~
|
|
typeof(a[0]).stringof);
|
|
return a[0];
|
|
}
|
|
|
|
@property dchar front(A)(A a) if (isNarrowString!A)
|
|
{
|
|
assert(a.length, "Attempting to fetch the front of an empty array of " ~
|
|
typeof(a[0]).stringof);
|
|
size_t i = 0;
|
|
return decode(a, i);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto a = [ 1, 2 ];
|
|
a.front = 4;
|
|
assert(a.front == 4);
|
|
assert(a == [ 4, 2 ]);
|
|
|
|
immutable b = [ 1, 2 ];
|
|
assert(b.front == 1);
|
|
}
|
|
|
|
/**
|
|
Implements the range interface primitive $(D back) for built-in
|
|
arrays. Due to the fact that nonmember functions can be called with
|
|
the first argument using the dot notation, $(D array.back) is
|
|
equivalent to $(D back(array)). For $(GLOSSARY narrow strings), $(D
|
|
back) automaticaly returns the last $(GLOSSARY code point) as a $(D
|
|
dchar).
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
int[] a = [ 1, 2, 3 ];
|
|
assert(a.back == 3);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
@property ref T back(T)(T[] a) if (!isNarrowString!(T[]))
|
|
{
|
|
assert(a.length, "Attempting to fetch the back of an empty array of " ~
|
|
typeof(a[0]).stringof);
|
|
return a[$ - 1];
|
|
}
|
|
|
|
unittest
|
|
{
|
|
int[] a = [ 1, 2, 3 ];
|
|
assert(a.back == 3);
|
|
a.back += 4;
|
|
assert(a.back == 7);
|
|
|
|
immutable b = [ 1, 2, 3 ];
|
|
assert(b.back == 3);
|
|
}
|
|
|
|
// Specialization for strings
|
|
@property dchar back(A)(A a)
|
|
if(isDynamicArray!A && isNarrowString!A)
|
|
{
|
|
assert(a.length, "Attempting to fetch the back of an empty array of " ~
|
|
typeof(a[0]).stringof);
|
|
size_t i = a.length - std.utf.strideBack(a, a.length);
|
|
return decode(a, i);
|
|
}
|
|
|
|
// overlap
|
|
/*
|
|
NOTE: Undocumented for now, overlap does not yet work with ctfe.
|
|
Returns the overlapping portion, if any, of two arrays. Unlike $(D
|
|
equal), $(D overlap) only compares the pointers in the ranges, not the
|
|
values referred by them. If $(D r1) and $(D r2) have an overlapping
|
|
slice, returns that slice. Otherwise, returns the null slice.
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
int[] a = [ 10, 11, 12, 13, 14 ];
|
|
int[] b = a[1 .. 3];
|
|
assert(overlap(a, b) == [ 11, 12 ]);
|
|
b = b.dup;
|
|
// overlap disappears even though the content is the same
|
|
assert(overlap(a, b).empty);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
inout(T)[] overlap(T)(inout(T)[] r1, inout(T)[] r2) @trusted pure nothrow
|
|
{
|
|
alias inout(T) U;
|
|
static U* max(U* a, U* b) nothrow { return a > b ? a : b; }
|
|
static U* min(U* a, U* b) nothrow { return a < b ? a : b; }
|
|
|
|
auto b = max(r1.ptr, r2.ptr);
|
|
auto e = min(r1.ptr + r1.length, r2.ptr + r2.length);
|
|
return b < e ? b[0 .. e - b] : null;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
static void test(L, R)(L l, R r)
|
|
{
|
|
scope(failure) writeln("Types: L %s R %s", L.stringof, R.stringof);
|
|
|
|
assert(overlap(l, r) == [ 100, 12 ]);
|
|
|
|
assert(overlap(l, l[0 .. 2]) is l[0 .. 2]);
|
|
assert(overlap(l, l[3 .. 5]) is l[3 .. 5]);
|
|
assert(overlap(l[0 .. 2], l) is l[0 .. 2]);
|
|
assert(overlap(l[3 .. 5], l) is l[3 .. 5]);
|
|
}
|
|
|
|
int[] a = [ 10, 11, 12, 13, 14 ];
|
|
int[] b = a[1 .. 3];
|
|
a[1] = 100;
|
|
|
|
immutable int[] c = a.idup;
|
|
immutable int[] d = c[1 .. 3];
|
|
|
|
test(a, b);
|
|
assert(overlap(a, b.dup).empty);
|
|
test(c, d);
|
|
assert(overlap(c, d.idup).empty);
|
|
}
|
|
|
|
/+
|
|
Commented out until the insert which has been deprecated has been removed.
|
|
I'd love to just remove it in favor of insertInPlace, but then code would then
|
|
use this version of insert and silently break. So, it's here so that it can
|
|
be used once insert has not only been deprecated but removed, but until then,
|
|
it's commented out.
|
|
|
|
/++
|
|
Creates a new array which is a copy of $(D array) with $(D stuff) (which
|
|
must be an input range or a single item) inserted at position $(D pos).
|
|
|
|
Examples:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
--------------------
|
|
int[] a = [ 1, 2, 3, 4 ];
|
|
auto b = a.insert(2, [ 1, 2 ]);
|
|
assert(a == [ 1, 2, 3, 4 ]);
|
|
assert(b == [ 1, 2, 1, 2, 3, 4 ]);
|
|
--------------------
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
+/
|
|
T[] insert(T, Range)(T[] array, size_t pos, Range stuff)
|
|
if(isInputRange!Range &&
|
|
(is(ElementType!Range : T) ||
|
|
isSomeString!(T[]) && is(ElementType!Range : dchar)))
|
|
{
|
|
static if(hasLength!Range && is(ElementEncodingType!Range : T))
|
|
{
|
|
auto retval = new Unqual!(T)[](array.length + stuff.length);
|
|
retval[0 .. pos] = array[0 .. pos];
|
|
copy(stuff, retval[pos .. pos + stuff.length]);
|
|
retval[pos + stuff.length .. $] = array[pos .. $];
|
|
return cast(T[])retval;
|
|
}
|
|
else
|
|
{
|
|
auto app = appender!(T[])();
|
|
app.put(array[0 .. pos]);
|
|
app.put(stuff);
|
|
app.put(array[pos .. $]);
|
|
return app.data;
|
|
}
|
|
}
|
|
|
|
/++ Ditto +/
|
|
T[] insert(T)(T[] array, size_t pos, T stuff)
|
|
{
|
|
auto retval = new T[](array.length + 1);
|
|
retval[0 .. pos] = array[0 .. pos];
|
|
retval[pos] = stuff;
|
|
retval[pos + 1 .. $] = array[pos .. $];
|
|
return retval;
|
|
}
|
|
|
|
//Verify Example.
|
|
unittest
|
|
{
|
|
int[] a = [ 1, 2, 3, 4 ];
|
|
auto b = a.insert(2, [ 1, 2 ]);
|
|
assert(a == [ 1, 2, 3, 4 ]);
|
|
assert(b == [ 1, 2, 1, 2, 3, 4 ]);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto a = [1, 2, 3, 4];
|
|
assert(a.insert(0, [6, 7]) == [6, 7, 1, 2, 3, 4]);
|
|
assert(a.insert(2, [6, 7]) == [1, 2, 6, 7, 3, 4]);
|
|
assert(a.insert(a.length, [6, 7]) == [1, 2, 3, 4, 6, 7]);
|
|
|
|
assert(a.insert(0, filter!"true"([6, 7])) == [6, 7, 1, 2, 3, 4]);
|
|
assert(a.insert(2, filter!"true"([6, 7])) == [1, 2, 6, 7, 3, 4]);
|
|
assert(a.insert(a.length, filter!"true"([6, 7])) == [1, 2, 3, 4, 6, 7]);
|
|
|
|
assert(a.insert(0, 22) == [22, 1, 2, 3, 4]);
|
|
assert(a.insert(2, 22) == [1, 2, 22, 3, 4]);
|
|
assert(a.insert(a.length, 22) == [1, 2, 3, 4, 22]);
|
|
assert(a == [1, 2, 3, 4]);
|
|
|
|
auto testStr(T, U)(string file = __FILE__, size_t line = __LINE__)
|
|
{
|
|
|
|
auto l = to!T("hello");
|
|
auto r = to!U(" world");
|
|
|
|
enforce(insert(l, 0, r) == " worldhello",
|
|
new AssertError("testStr failure 1", file, line));
|
|
enforce(insert(l, 3, r) == "hel worldlo",
|
|
new AssertError("testStr failure 2", file, line));
|
|
enforce(insert(l, l.length, r) == "hello world",
|
|
new AssertError("testStr failure 3", file, line));
|
|
enforce(insert(l, 0, filter!"true"(r)) == " worldhello",
|
|
new AssertError("testStr failure 4", file, line));
|
|
enforce(insert(l, 3, filter!"true"(r)) == "hel worldlo",
|
|
new AssertError("testStr failure 5", file, line));
|
|
enforce(insert(l, l.length, filter!"true"(r)) == "hello world",
|
|
new AssertError("testStr failure 6", file, line));
|
|
}
|
|
|
|
testStr!(string, string)();
|
|
testStr!(string, wstring)();
|
|
testStr!(string, dstring)();
|
|
testStr!(wstring, string)();
|
|
testStr!(wstring, wstring)();
|
|
testStr!(wstring, dstring)();
|
|
testStr!(dstring, string)();
|
|
testStr!(dstring, wstring)();
|
|
testStr!(dstring, dstring)();
|
|
}
|
|
+/
|
|
|
|
private void copyBackwards(T)(T[] src, T[] dest)
|
|
{
|
|
import core.stdc.string;
|
|
assert(src.length == dest.length);
|
|
if (!__ctfe)
|
|
memmove(dest.ptr, src.ptr, src.length * T.sizeof);
|
|
else
|
|
{
|
|
immutable len = src.length;
|
|
for (size_t i = len; i-- > 0;)
|
|
{
|
|
dest[i] = src[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
/++
|
|
Inserts $(D stuff) (which must be an input range or any number of
|
|
implicitly convertible items) in $(D array) at position $(D pos).
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
---
|
|
int[] a = [ 1, 2, 3, 4 ];
|
|
a.insertInPlace(2, [ 1, 2 ]);
|
|
assert(a == [ 1, 2, 1, 2, 3, 4 ]);
|
|
a.insertInPlace(3, 10u, 11);
|
|
assert(a == [ 1, 2, 1, 10, 11, 2, 3, 4]);
|
|
---
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
+/
|
|
void insertInPlace(T, U...)(ref T[] array, size_t pos, U stuff)
|
|
if(!isSomeString!(T[])
|
|
&& allSatisfy!(isInputRangeOrConvertible!T, U) && U.length > 0)
|
|
{
|
|
static if(allSatisfy!(isInputRangeWithLengthOrConvertible!T, U))
|
|
{
|
|
immutable oldLen = array.length;
|
|
size_t to_insert = 0;
|
|
foreach (i, E; U)
|
|
{
|
|
static if (is(E : T)) //a single convertible value, not a range
|
|
to_insert += 1;
|
|
else
|
|
to_insert += stuff[i].length;
|
|
}
|
|
array.length += to_insert;
|
|
copyBackwards(array[pos..oldLen], array[pos+to_insert..$]);
|
|
auto ptr = array.ptr + pos;
|
|
foreach (i, E; U)
|
|
{
|
|
static if (is(E : T)) //ditto
|
|
{
|
|
emplace(ptr++, stuff[i]);
|
|
}
|
|
else
|
|
{
|
|
foreach (v; stuff[i])
|
|
emplace(ptr++, v);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// stuff has some InputRanges in it that don't have length
|
|
// assume that stuff to be inserted is typically shorter
|
|
// then the array that can be arbitrary big
|
|
// TODO: needs a better implementation as there is no need to build an _array_
|
|
// a singly-linked list of memory blocks (rope, etc.) will do
|
|
auto app = appender!(T[])();
|
|
foreach (i, E; U)
|
|
app.put(stuff[i]);
|
|
insertInPlace(array, pos, app.data);
|
|
}
|
|
}
|
|
|
|
/++ Ditto +/
|
|
void insertInPlace(T, U...)(ref T[] array, size_t pos, U stuff)
|
|
if(isSomeString!(T[]) && allSatisfy!(isCharOrStringOrDcharRange, U))
|
|
{
|
|
static if(is(Unqual!T == T)
|
|
&& allSatisfy!(isInputRangeWithLengthOrConvertible!dchar, U))
|
|
{
|
|
// mutable, can do in place
|
|
//helper function: re-encode dchar to Ts and store at *ptr
|
|
static T* putDChar(T* ptr, dchar ch)
|
|
{
|
|
static if(is(T == dchar))
|
|
{
|
|
*ptr++ = ch;
|
|
return ptr;
|
|
}
|
|
else
|
|
{
|
|
T[dchar.sizeof/T.sizeof] buf;
|
|
size_t len = encode(buf, ch);
|
|
final switch(len)
|
|
{
|
|
static if(T.sizeof == char.sizeof)
|
|
{
|
|
case 4:
|
|
ptr[3] = buf[3];
|
|
goto case;
|
|
case 3:
|
|
ptr[2] = buf[2];
|
|
goto case;
|
|
}
|
|
case 2:
|
|
ptr[1] = buf[1];
|
|
goto case;
|
|
case 1:
|
|
ptr[0] = buf[0];
|
|
}
|
|
ptr += len;
|
|
return ptr;
|
|
}
|
|
}
|
|
immutable oldLen = array.length;
|
|
size_t to_insert = 0;
|
|
//count up the number of *codeunits* to insert
|
|
foreach (i, E; U)
|
|
to_insert += codeLength!T(stuff[i]);
|
|
array.length += to_insert;
|
|
copyBackwards(array[pos..oldLen], array[pos+to_insert..$]);
|
|
auto ptr = array.ptr + pos;
|
|
foreach (i, E; U)
|
|
{
|
|
static if(is(E : dchar))
|
|
{
|
|
ptr = putDChar(ptr, stuff[i]);
|
|
}
|
|
else
|
|
{
|
|
foreach (dchar ch; stuff[i])
|
|
ptr = putDChar(ptr, ch);
|
|
}
|
|
}
|
|
assert(ptr == array.ptr + pos + to_insert, text(ptr - array.ptr, " vs ", pos + to_insert ));
|
|
}
|
|
else
|
|
{
|
|
// immutable/const, just construct a new array
|
|
auto app = appender!(T[])();
|
|
app.put(array[0..pos]);
|
|
foreach (i, E; U)
|
|
app.put(stuff[i]);
|
|
app.put(array[pos..$]);
|
|
array = app.data;
|
|
}
|
|
}
|
|
|
|
//constraint helpers
|
|
private template isInputRangeWithLengthOrConvertible(E)
|
|
{
|
|
template isInputRangeWithLengthOrConvertible(R)
|
|
{
|
|
//hasLength not defined for char[], wchar[] and dchar[]
|
|
enum isInputRangeWithLengthOrConvertible =
|
|
(isInputRange!R && is(typeof(R.init.length))
|
|
&& is(ElementType!R : E)) || is(R : E);
|
|
}
|
|
}
|
|
|
|
//ditto
|
|
private template isCharOrStringOrDcharRange(T)
|
|
{
|
|
enum isCharOrStringOrDcharRange = isSomeString!T || isSomeChar!T ||
|
|
(isInputRange!T && is(ElementType!T : dchar));
|
|
}
|
|
|
|
//ditto
|
|
private template isInputRangeOrConvertible(E)
|
|
{
|
|
template isInputRangeOrConvertible(R)
|
|
{
|
|
enum isInputRangeOrConvertible =
|
|
(isInputRange!R && is(ElementType!R : E)) || is(R : E);
|
|
}
|
|
}
|
|
|
|
|
|
//Verify Example.
|
|
unittest
|
|
{
|
|
int[] a = [ 1, 2, 3, 4 ];
|
|
a.insertInPlace(2, [ 1, 2 ]);
|
|
assert(a == [ 1, 2, 1, 2, 3, 4 ]);
|
|
a.insertInPlace(3, 10u, 11);
|
|
assert(a == [ 1, 2, 1, 10, 11, 2, 3, 4]);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
bool test(T, U, V)(T orig, size_t pos, U toInsert, V result,
|
|
string file = __FILE__, size_t line = __LINE__)
|
|
{
|
|
{
|
|
static if(is(T == typeof(T.dup)))
|
|
auto a = orig.dup;
|
|
else
|
|
auto a = orig.idup;
|
|
|
|
a.insertInPlace(pos, toInsert);
|
|
if(!std.algorithm.equal(a, result))
|
|
return false;
|
|
}
|
|
|
|
static if(isInputRange!U)
|
|
{
|
|
orig.insertInPlace(pos, filter!"true"(toInsert));
|
|
return std.algorithm.equal(orig, result);
|
|
}
|
|
else
|
|
return true;
|
|
}
|
|
|
|
|
|
assert(test([1, 2, 3, 4], 0, [6, 7], [6, 7, 1, 2, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 2, [8, 9], [1, 2, 8, 9, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 4, [10, 11], [1, 2, 3, 4, 10, 11]));
|
|
|
|
assert(test([1, 2, 3, 4], 0, 22, [22, 1, 2, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 2, 23, [1, 2, 23, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 4, 24, [1, 2, 3, 4, 24]));
|
|
|
|
auto testStr(T, U)(string file = __FILE__, size_t line = __LINE__)
|
|
{
|
|
|
|
auto l = to!T("hello");
|
|
auto r = to!U(" વિશ્વ");
|
|
|
|
enforce(test(l, 0, r, " વિશ્વhello"),
|
|
new AssertError("testStr failure 1", file, line));
|
|
enforce(test(l, 3, r, "hel વિશ્વlo"),
|
|
new AssertError("testStr failure 2", file, line));
|
|
enforce(test(l, l.length, r, "hello વિશ્વ"),
|
|
new AssertError("testStr failure 3", file, line));
|
|
}
|
|
|
|
foreach (T; TypeTuple!(char, wchar, dchar,
|
|
immutable(char), immutable(wchar), immutable(dchar)))
|
|
{
|
|
foreach (U; TypeTuple!(char, wchar, dchar,
|
|
immutable(char), immutable(wchar), immutable(dchar)))
|
|
{
|
|
testStr!(T[], U[])();
|
|
}
|
|
|
|
}
|
|
|
|
// variadic version
|
|
bool testVar(T, U...)(T orig, size_t pos, U args)
|
|
{
|
|
static if(is(T == typeof(T.dup)))
|
|
auto a = orig.dup;
|
|
else
|
|
auto a = orig.idup;
|
|
auto result = args[$-1];
|
|
|
|
a.insertInPlace(pos, args[0..$-1]);
|
|
if (!std.algorithm.equal(a, result))
|
|
return false;
|
|
return true;
|
|
}
|
|
assert(testVar([1, 2, 3, 4], 0, 6, 7u, [6, 7, 1, 2, 3, 4]));
|
|
assert(testVar([1L, 2, 3, 4], 2, 8, 9L, [1, 2, 8, 9, 3, 4]));
|
|
assert(testVar([1L, 2, 3, 4], 4, 10L, 11, [1, 2, 3, 4, 10, 11]));
|
|
assert(testVar([1L, 2, 3, 4], 4, [10, 11], 40L, 42L,
|
|
[1, 2, 3, 4, 10, 11, 40, 42]));
|
|
assert(testVar([1L, 2, 3, 4], 4, 10, 11, [40L, 42],
|
|
[1, 2, 3, 4, 10, 11, 40, 42]));
|
|
assert(testVar("t".idup, 1, 'e', 's', 't', "test"));
|
|
assert(testVar("!!"w.idup, 1, "\u00e9ll\u00f4", 'x', "TTT"w, 'y',
|
|
"!\u00e9ll\u00f4xTTTy!"));
|
|
assert(testVar("flipflop"d.idup, 4, '_',
|
|
"xyz"w, '\U00010143', '_', "abc"d, "__",
|
|
"flip_xyz\U00010143_abc__flop"));
|
|
}
|
|
|
|
unittest
|
|
{
|
|
// insertInPlace interop with postblit
|
|
struct Int
|
|
{
|
|
int* payload;
|
|
this(int k)
|
|
{
|
|
payload = new int;
|
|
*payload = k;
|
|
}
|
|
this(this)
|
|
{
|
|
int* np = new int;
|
|
*np = *payload;
|
|
payload = np;
|
|
}
|
|
~this()
|
|
{
|
|
*payload = 0; //'destroy' it
|
|
}
|
|
@property int getPayload(){ return *payload; }
|
|
alias getPayload this;
|
|
}
|
|
|
|
Int[] arr;// = [Int(1), Int(4), Int(5)]; //@@BUG 8740
|
|
arr ~= [Int(1), Int(4), Int(5)];
|
|
assert(arr[0] == 1);
|
|
insertInPlace(arr, 1, Int(2), Int(3));
|
|
assert(equal(arr, [1, 2, 3, 4, 5])); //check it works with postblit
|
|
}
|
|
|
|
unittest
|
|
{
|
|
static int[] testCTFE()
|
|
{
|
|
int[] a = [1, 2];
|
|
a.insertInPlace(2, 3);
|
|
a.insertInPlace(0, -1, 0);
|
|
return a;
|
|
}
|
|
static assert(testCTFE() == [-1, 0, 1, 2, 3]);
|
|
}
|
|
|
|
unittest // bugzilla 6874
|
|
{
|
|
// allocate some space
|
|
byte[] a;
|
|
a.length = 1;
|
|
|
|
// fill it
|
|
a.length = a.capacity;
|
|
|
|
// write beyond
|
|
byte[] b = a[$ .. $];
|
|
b.insertInPlace(0, a);
|
|
|
|
// make sure that reallocation has happened
|
|
assert(GC.addrOf(&b[0]) == GC.addrOf(&b[$-1]));
|
|
}
|
|
|
|
|
|
/++
|
|
Returns whether the $(D front)s of $(D lhs) and $(D rhs) both refer to the
|
|
same place in memory, making one of the arrays a slice of the other which
|
|
starts at index $(D 0).
|
|
+/
|
|
pure bool sameHead(T)(T[] lhs, T[] rhs)
|
|
{
|
|
return lhs.ptr == rhs.ptr;
|
|
}
|
|
|
|
|
|
/++
|
|
Returns whether the $(D back)s of $(D lhs) and $(D rhs) both refer to the
|
|
same place in memory, making one of the arrays a slice of the other which
|
|
end at index $(D $).
|
|
+/
|
|
pure bool sameTail(T)(T[] lhs, T[] rhs)
|
|
{
|
|
return lhs.ptr + lhs.length == rhs.ptr + rhs.length;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
foreach(T; TypeTuple!(int[], const(int)[], immutable(int)[], const int[], immutable int[]))
|
|
{
|
|
T a = [1, 2, 3, 4, 5];
|
|
T b = a;
|
|
T c = a[1 .. $];
|
|
T d = a[0 .. 1];
|
|
T e = null;
|
|
|
|
assert(sameHead(a, a));
|
|
assert(sameHead(a, b));
|
|
assert(!sameHead(a, c));
|
|
assert(sameHead(a, d));
|
|
assert(!sameHead(a, e));
|
|
|
|
assert(sameTail(a, a));
|
|
assert(sameTail(a, b));
|
|
assert(sameTail(a, c));
|
|
assert(!sameTail(a, d));
|
|
assert(!sameTail(a, e));
|
|
|
|
//verifies R-value compatibilty
|
|
assert(a.sameHead(a[0 .. 0]));
|
|
assert(a.sameTail(a[$ .. $]));
|
|
}
|
|
}
|
|
|
|
/********************************************
|
|
Returns an array that consists of $(D s) (which must be an input
|
|
range) repeated $(D n) times. This function allocates, fills, and
|
|
returns a new array. For a lazy version, refer to $(XREF range, repeat).
|
|
*/
|
|
ElementEncodingType!S[] replicate(S)(S s, size_t n) if (isDynamicArray!S)
|
|
{
|
|
alias ElementEncodingType!S[] RetType;
|
|
|
|
// Optimization for return join(std.range.repeat(s, n));
|
|
if (n == 0)
|
|
return RetType.init;
|
|
if (n == 1)
|
|
return cast(RetType) s;
|
|
auto r = new Unqual!(typeof(s[0]))[n * s.length];
|
|
if (s.length == 1)
|
|
r[] = s[0];
|
|
else
|
|
{
|
|
immutable len = s.length, nlen = n * len;
|
|
for (size_t i = 0; i < nlen; i += len)
|
|
{
|
|
r[i .. i + len] = s[];
|
|
}
|
|
}
|
|
return cast(RetType) r;
|
|
}
|
|
|
|
ElementType!S[] replicate(S)(S s, size_t n)
|
|
if (isInputRange!S && !isDynamicArray!S)
|
|
{
|
|
return join(std.range.repeat(s, n));
|
|
}
|
|
|
|
unittest
|
|
{
|
|
debug(std_array) printf("array.replicate.unittest\n");
|
|
|
|
foreach (S; TypeTuple!(string, wstring, dstring, char[], wchar[], dchar[]))
|
|
{
|
|
S s;
|
|
immutable S t = "abc";
|
|
|
|
assert(replicate(to!S("1234"), 0) is null);
|
|
assert(replicate(to!S("1234"), 0) is null);
|
|
assert(replicate(to!S("1234"), 1) == "1234");
|
|
assert(replicate(to!S("1234"), 2) == "12341234");
|
|
assert(replicate(to!S("1"), 4) == "1111");
|
|
assert(replicate(t, 3) == "abcabcabc");
|
|
assert(replicate(cast(S) null, 4) is null);
|
|
}
|
|
}
|
|
|
|
/**************************************
|
|
Split the string $(D s) into an array of words, using whitespace as
|
|
delimiter. Runs of whitespace are merged together (no empty words are produced).
|
|
*/
|
|
S[] split(S)(S s) if (isSomeString!S)
|
|
{
|
|
size_t istart;
|
|
bool inword = false;
|
|
S[] result;
|
|
|
|
foreach (i; 0 .. s.length)
|
|
{
|
|
switch (s[i])
|
|
{
|
|
case ' ': case '\t': case '\f': case '\r': case '\n': case '\v':
|
|
if (inword)
|
|
{
|
|
result ~= s[istart .. i];
|
|
inword = false;
|
|
}
|
|
break;
|
|
default:
|
|
if (!inword)
|
|
{
|
|
istart = i;
|
|
inword = true;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
if (inword)
|
|
result ~= s[istart .. $];
|
|
return result;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
foreach (S; TypeTuple!(string, wstring, dstring))
|
|
{
|
|
debug(std_array) printf("array.split1\n");
|
|
S s = " \t\npeter paul\tjerry \n";
|
|
assert(equal(split(s), [ to!S("peter"), to!S("paul"), to!S("jerry") ]));
|
|
|
|
S s2 = " \t\npeter paul\tjerry";
|
|
assert(equal(split(s2), [ to!S("peter"), to!S("paul"), to!S("jerry") ]));
|
|
}
|
|
|
|
immutable string s = " \t\npeter paul\tjerry \n";
|
|
assert(equal(split(s), ["peter", "paul", "jerry"]));
|
|
}
|
|
|
|
/**
|
|
Splits a string by whitespace.
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
auto a = " a bcd ef gh ";
|
|
assert(equal(splitter(a), ["", "a", "bcd", "ef", "gh"][]));
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array, std.algorithm: equal;))
|
|
*/
|
|
auto splitter(C)(C[] s)
|
|
if(isSomeString!(C[]))
|
|
{
|
|
return std.algorithm.splitter!(std.uni.isWhite)(s);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
foreach(S; TypeTuple!(string, wstring, dstring))
|
|
{
|
|
S a = " a bcd ef gh ";
|
|
assert(equal(splitter(a), [to!S(""), to!S("a"), to!S("bcd"), to!S("ef"), to!S("gh")][]));
|
|
a = "";
|
|
assert(splitter(a).empty);
|
|
}
|
|
|
|
immutable string s = " a bcd ef gh ";
|
|
assert(equal(splitter(s), ["", "a", "bcd", "ef", "gh"][]));
|
|
}
|
|
|
|
/**************************************
|
|
* Splits $(D s) into an array, using $(D delim) as the delimiter.
|
|
*/
|
|
Unqual!(S1)[] split(S1, S2)(S1 s, S2 delim)
|
|
if (isForwardRange!(Unqual!S1) && isForwardRange!S2)
|
|
{
|
|
Unqual!S1 us = s;
|
|
auto app = appender!(Unqual!(S1)[])();
|
|
foreach (word; std.algorithm.splitter(us, delim))
|
|
{
|
|
app.put(word);
|
|
}
|
|
return app.data;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
debug(std_array) printf("array.split\n");
|
|
foreach (S; TypeTuple!(string, wstring, dstring,
|
|
immutable(string), immutable(wstring), immutable(dstring),
|
|
char[], wchar[], dchar[],
|
|
const(char)[], const(wchar)[], const(dchar)[],
|
|
const(char[]), immutable(char[])))
|
|
{
|
|
S s = to!S(",peter,paul,jerry,");
|
|
|
|
auto words = split(s, ",");
|
|
assert(words.length == 5, text(words.length));
|
|
assert(cmp(words[0], "") == 0);
|
|
assert(cmp(words[1], "peter") == 0);
|
|
assert(cmp(words[2], "paul") == 0);
|
|
assert(cmp(words[3], "jerry") == 0);
|
|
assert(cmp(words[4], "") == 0);
|
|
|
|
auto s1 = s[0 .. s.length - 1]; // lop off trailing ','
|
|
words = split(s1, ",");
|
|
assert(words.length == 4);
|
|
assert(cmp(words[3], "jerry") == 0);
|
|
|
|
auto s2 = s1[1 .. s1.length]; // lop off leading ','
|
|
words = split(s2, ",");
|
|
assert(words.length == 3);
|
|
assert(cmp(words[0], "peter") == 0);
|
|
|
|
auto s3 = to!S(",,peter,,paul,,jerry,,");
|
|
|
|
words = split(s3, ",,");
|
|
assert(words.length == 5);
|
|
assert(cmp(words[0], "") == 0);
|
|
assert(cmp(words[1], "peter") == 0);
|
|
assert(cmp(words[2], "paul") == 0);
|
|
assert(cmp(words[3], "jerry") == 0);
|
|
assert(cmp(words[4], "") == 0);
|
|
|
|
auto s4 = s3[0 .. s3.length - 2]; // lop off trailing ',,'
|
|
words = split(s4, ",,");
|
|
assert(words.length == 4);
|
|
assert(cmp(words[3], "jerry") == 0);
|
|
|
|
auto s5 = s4[2 .. s4.length]; // lop off leading ',,'
|
|
words = split(s5, ",,");
|
|
assert(words.length == 3);
|
|
assert(cmp(words[0], "peter") == 0);
|
|
}
|
|
}
|
|
|
|
|
|
/++
|
|
Concatenates all of the ranges in $(D ror) together into one array using
|
|
$(D sep) as the separator if present.
|
|
|
|
Examples:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
--------------------
|
|
assert(join(["hello", "silly", "world"], " ") == "hello silly world");
|
|
assert(join(["hello", "silly", "world"]) == "hellosillyworld");
|
|
|
|
assert(join([[1, 2, 3], [4, 5]], [72, 73]) == [1, 2, 3, 72, 73, 4, 5]);
|
|
assert(join([[1, 2, 3], [4, 5]]) == [1, 2, 3, 4, 5]);
|
|
--------------------
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
+/
|
|
ElementEncodingType!(ElementType!RoR)[] join(RoR, R)(RoR ror, R sep)
|
|
if(isInputRange!RoR &&
|
|
isInputRange!(ElementType!RoR) &&
|
|
isForwardRange!R &&
|
|
is(Unqual!(ElementType!(ElementType!RoR)) == Unqual!(ElementType!R)))
|
|
{
|
|
return joinImpl(ror, sep);
|
|
}
|
|
|
|
/// Ditto
|
|
ElementEncodingType!(ElementType!RoR)[] join(RoR)(RoR ror)
|
|
if(isInputRange!RoR && isInputRange!(ElementType!RoR))
|
|
{
|
|
return joinImpl(ror);
|
|
}
|
|
|
|
//Verify Examples.
|
|
unittest
|
|
{
|
|
assert(join(["hello", "silly", "world"], " ") == "hello silly world");
|
|
assert(join(["hello", "silly", "world"]) == "hellosillyworld");
|
|
|
|
assert(join([[1, 2, 3], [4, 5]], [72, 73]) == [1, 2, 3, 72, 73, 4, 5]);
|
|
assert(join([[1, 2, 3], [4, 5]]) == [1, 2, 3, 4, 5]);
|
|
}
|
|
|
|
// We have joinImpl instead of just making them all join in order to simplify
|
|
// the template constraint that the user will see on errors (it's condensed down
|
|
// to the conditions that are common to all).
|
|
ElementEncodingType!(ElementType!RoR)[] joinImpl(RoR, R)(RoR ror, R sep)
|
|
if(isInputRange!RoR &&
|
|
isInputRange!(ElementType!RoR) &&
|
|
!isDynamicArray!(ElementType!RoR) &&
|
|
isForwardRange!R &&
|
|
is(Unqual!(ElementType!(ElementType!RoR)) == Unqual!(ElementType!R)))
|
|
{
|
|
if(ror.empty)
|
|
return typeof(return).init;
|
|
auto iter = joiner(ror, sep);
|
|
|
|
static if(isForwardRange!RoR &&
|
|
hasLength!RoR &&
|
|
hasLength!(ElementType!RoR) &&
|
|
hasLength!R)
|
|
{
|
|
immutable resultLen = reduce!"a + b.length"(cast(size_t) 0, ror.save)
|
|
+ sep.length * (ror.length - 1);
|
|
auto result = new ElementEncodingType!(ElementType!RoR)[resultLen];
|
|
copy(iter, result);
|
|
return result;
|
|
}
|
|
else
|
|
return copy(iter, appender!(typeof(return))()).data;
|
|
}
|
|
|
|
ElementEncodingType!(ElementType!RoR)[] joinImpl(RoR, R)(RoR ror, R sep)
|
|
if(isForwardRange!RoR &&
|
|
hasLength!RoR &&
|
|
isDynamicArray!(ElementType!RoR) &&
|
|
isForwardRange!R &&
|
|
is(Unqual!(ElementType!(ElementType!RoR)) == Unqual!(ElementType!R)))
|
|
{
|
|
alias ElementEncodingType!(ElementType!RoR) RetElem;
|
|
alias RetElem[] RetType;
|
|
|
|
if(ror.empty)
|
|
return RetType.init;
|
|
|
|
auto sepArr = to!RetType(sep);
|
|
immutable resultLen = reduce!"a + b.length"(cast(size_t) 0, ror) +
|
|
sepArr.length * (ror.length - 1);
|
|
auto result = new Unqual!RetElem[](resultLen);
|
|
|
|
auto first = ror.front;
|
|
result[0 .. first.length] = first[];
|
|
size_t i = first.length;
|
|
ror.popFront();
|
|
foreach(r; ror)
|
|
{
|
|
result[i .. i + sepArr.length] = sepArr[];
|
|
i += sepArr.length;
|
|
result[i .. i + r.length] = r[];
|
|
i += r.length;
|
|
}
|
|
|
|
return cast(RetType)result;
|
|
}
|
|
|
|
ElementEncodingType!(ElementType!RoR)[] joinImpl(RoR, R)(RoR ror, R sep)
|
|
if(isInputRange!RoR &&
|
|
((isForwardRange!RoR && !hasLength!RoR) || !isForwardRange!RoR) &&
|
|
isDynamicArray!(ElementType!RoR) &&
|
|
isForwardRange!R &&
|
|
is(Unqual!(ElementType!(ElementType!RoR)) == Unqual!(ElementType!R)))
|
|
{
|
|
if(ror.empty)
|
|
return typeof(return).init;
|
|
|
|
auto result = appender!(typeof(return))();
|
|
result.put(ror.front);
|
|
ror.popFront();
|
|
foreach (r; ror)
|
|
{
|
|
result.put(sep);
|
|
result.put(r);
|
|
}
|
|
return result.data;
|
|
}
|
|
|
|
ElementEncodingType!(ElementType!RoR)[] joinImpl(RoR)(RoR ror)
|
|
if(isInputRange!RoR &&
|
|
isInputRange!(ElementType!RoR) &&
|
|
!isDynamicArray!(ElementType!RoR))
|
|
{
|
|
auto iter = joiner(ror);
|
|
|
|
static if(isForwardRange!RoR &&
|
|
hasLength!RoR &&
|
|
hasLength!(ElementType!RoR))
|
|
{
|
|
immutable resultLen = reduce!"a + b.length"(cast(size_t) 0, ror);
|
|
auto result = new Unqual!(ElementEncodingType!(ElementType!RoR))[resultLen];
|
|
copy(iter, result);
|
|
return cast(typeof(return)) result;
|
|
}
|
|
else
|
|
return copy(iter, appender!(typeof(return))()).data;
|
|
}
|
|
|
|
ElementEncodingType!(ElementType!RoR)[] joinImpl(RoR)(RoR ror)
|
|
if(isForwardRange!RoR &&
|
|
hasLength!RoR &&
|
|
isDynamicArray!(ElementType!RoR))
|
|
{
|
|
alias ElementEncodingType!(ElementType!RoR) RetElem;
|
|
alias RetElem[] RetType;
|
|
|
|
if(ror.empty)
|
|
return RetType.init;
|
|
|
|
immutable resultLen = reduce!"a + b.length"(cast(size_t) 0, ror);
|
|
auto result = new Unqual!RetElem[](resultLen);
|
|
|
|
size_t i = 0;
|
|
foreach(r; ror)
|
|
{
|
|
result[i .. i + r.length] = r[];
|
|
i += r.length;
|
|
}
|
|
|
|
return cast(RetType)result;
|
|
}
|
|
|
|
ElementEncodingType!(ElementType!RoR)[] joinImpl(RoR)(RoR ror)
|
|
if(isInputRange!RoR &&
|
|
((isForwardRange!RoR && !hasLength!RoR) || !isForwardRange!RoR) &&
|
|
isDynamicArray!(ElementType!RoR))
|
|
{
|
|
if(ror.empty)
|
|
return typeof(return).init;
|
|
|
|
auto result = appender!(typeof(return))();
|
|
|
|
foreach(r; ror)
|
|
result.put(r);
|
|
|
|
return result.data;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
debug(std_array) printf("array.join.unittest\n");
|
|
|
|
string word1 = "peter";
|
|
string word2 = "paul";
|
|
string word3 = "jerry";
|
|
string[] words = [word1, word2, word3];
|
|
|
|
auto filteredWord1 = filter!"true"(word1);
|
|
auto filteredLenWord1 = takeExactly(filteredWord1, word1.length);
|
|
auto filteredWord2 = filter!"true"(word2);
|
|
auto filteredLenWord2 = takeExactly(filteredWord2, word2.length);
|
|
auto filteredWord3 = filter!"true"(word3);
|
|
auto filteredLenWord3 = takeExactly(filteredWord3, word3.length);
|
|
auto filteredWordsArr = [filteredWord1, filteredWord2, filteredWord3];
|
|
auto filteredLenWordsArr = [filteredLenWord1, filteredLenWord2, filteredLenWord3];
|
|
auto filteredWords = filter!"true"(filteredWordsArr);
|
|
|
|
foreach(S; TypeTuple!(string, wstring, dstring))
|
|
{
|
|
assert(join(filteredWords, to!S(", ")) == "peter, paul, jerry");
|
|
assert(join(filteredWordsArr, to!S(", ")) == "peter, paul, jerry");
|
|
assert(join(filteredLenWordsArr, to!S(", ")) == "peter, paul, jerry");
|
|
assert(join(filter!"true"(words), to!S(", ")) == "peter, paul, jerry");
|
|
assert(join(words, to!S(", ")) == "peter, paul, jerry");
|
|
|
|
assert(join(filteredWords, to!S("")) == "peterpauljerry");
|
|
assert(join(filteredWordsArr, to!S("")) == "peterpauljerry");
|
|
assert(join(filteredLenWordsArr, to!S("")) == "peterpauljerry");
|
|
assert(join(filter!"true"(words), to!S("")) == "peterpauljerry");
|
|
assert(join(words, to!S("")) == "peterpauljerry");
|
|
|
|
assert(join(filter!"true"([word1]), to!S(", ")) == "peter");
|
|
assert(join([filteredWord1], to!S(", ")) == "peter");
|
|
assert(join([filteredLenWord1], to!S(", ")) == "peter");
|
|
assert(join(filter!"true"([filteredWord1]), to!S(", ")) == "peter");
|
|
assert(join([word1], to!S(", ")) == "peter");
|
|
}
|
|
|
|
assert(join(filteredWords) == "peterpauljerry");
|
|
assert(join(filteredWordsArr) == "peterpauljerry");
|
|
assert(join(filteredLenWordsArr) == "peterpauljerry");
|
|
assert(join(filter!"true"(words)) == "peterpauljerry");
|
|
assert(join(words) == "peterpauljerry");
|
|
|
|
assert(join(filteredWords, filter!"true"(", ")) == "peter, paul, jerry");
|
|
assert(join(filteredWordsArr, filter!"true"(", ")) == "peter, paul, jerry");
|
|
assert(join(filteredLenWordsArr, filter!"true"(", ")) == "peter, paul, jerry");
|
|
assert(join(filter!"true"(words), filter!"true"(", ")) == "peter, paul, jerry");
|
|
assert(join(words, filter!"true"(", ")) == "peter, paul, jerry");
|
|
|
|
assert(join(filter!"true"(cast(typeof(filteredWordsArr))[]), ", ").empty);
|
|
assert(join(cast(typeof(filteredWordsArr))[], ", ").empty);
|
|
assert(join(cast(typeof(filteredLenWordsArr))[], ", ").empty);
|
|
assert(join(filter!"true"(cast(string[])[]), ", ").empty);
|
|
assert(join(cast(string[])[], ", ").empty);
|
|
|
|
assert(join(filter!"true"(cast(typeof(filteredWordsArr))[])).empty);
|
|
assert(join(cast(typeof(filteredWordsArr))[]).empty);
|
|
assert(join(cast(typeof(filteredLenWordsArr))[]).empty);
|
|
assert(join(filter!"true"(cast(string[])[])).empty);
|
|
assert(join(cast(string[])[]).empty);
|
|
|
|
assert(join([[1, 2], [41, 42]], [5, 6]) == [1, 2, 5, 6, 41, 42]);
|
|
assert(join([[1, 2], [41, 42]], cast(int[])[]) == [1, 2, 41, 42]);
|
|
assert(join([[1, 2]], [5, 6]) == [1, 2]);
|
|
assert(join(cast(int[][])[], [5, 6]).empty);
|
|
|
|
assert(join([[1, 2], [41, 42]]) == [1, 2, 41, 42]);
|
|
assert(join(cast(int[][])[]).empty);
|
|
}
|
|
|
|
|
|
/++
|
|
Replace occurrences of $(D from) with $(D to) in $(D subject). Returns a new
|
|
array without changing the contents of $(D subject), or the original array
|
|
if no match is found.
|
|
+/
|
|
E[] replace(E, R1, R2)(E[] subject, R1 from, R2 to)
|
|
if (isDynamicArray!(E[]) && isForwardRange!R1 && isForwardRange!R2
|
|
&& (hasLength!R2 || isSomeString!R2))
|
|
{
|
|
if (from.empty) return subject;
|
|
|
|
auto balance = std.algorithm.find(subject, from.save);
|
|
if (balance.empty)
|
|
return subject;
|
|
|
|
auto app = appender!(E[])();
|
|
app.put(subject[0 .. subject.length - balance.length]);
|
|
app.put(to.save);
|
|
replaceInto(app, balance[from.length .. $], from, to);
|
|
|
|
return app.data;
|
|
}
|
|
|
|
/++
|
|
Same as above, but outputs the result via OutputRange $(D sink).
|
|
If no match is found the original array is transfered to $(D sink) as is.
|
|
+/
|
|
void replaceInto(E, Sink, R1, R2)(Sink sink, E[] subject, R1 from, R2 to)
|
|
if (isOutputRange!(Sink, E) && isDynamicArray!(E[])
|
|
&& isForwardRange!R1 && isForwardRange!R2
|
|
&& (hasLength!R2 || isSomeString!R2))
|
|
{
|
|
if (from.empty)
|
|
{
|
|
sink.put(subject);
|
|
return;
|
|
}
|
|
for (;;)
|
|
{
|
|
auto balance = std.algorithm.find(subject, from.save);
|
|
if (balance.empty)
|
|
{
|
|
sink.put(subject);
|
|
break;
|
|
}
|
|
sink.put(subject[0 .. subject.length - balance.length]);
|
|
sink.put(to.save);
|
|
subject = balance[from.length .. $];
|
|
}
|
|
}
|
|
|
|
unittest
|
|
{
|
|
debug(std_array) printf("array.replace.unittest\n");
|
|
|
|
foreach (S; TypeTuple!(string, wstring, dstring, char[], wchar[], dchar[]))
|
|
{
|
|
auto s = to!S("This is a foo foo list");
|
|
auto from = to!S("foo");
|
|
auto into = to!S("silly");
|
|
S r;
|
|
int i;
|
|
|
|
r = replace(s, from, into);
|
|
i = cmp(r, "This is a silly silly list");
|
|
assert(i == 0);
|
|
|
|
r = replace(s, to!S(""), into);
|
|
i = cmp(r, "This is a foo foo list");
|
|
assert(i == 0);
|
|
|
|
assert(replace(r, to!S("won't find this"), to!S("whatever")) is r);
|
|
}
|
|
|
|
immutable s = "This is a foo foo list";
|
|
assert(replace(s, "foo", "silly") == "This is a silly silly list");
|
|
}
|
|
|
|
unittest
|
|
{
|
|
struct CheckOutput(C)
|
|
{
|
|
C[] desired;
|
|
this(C[] arr){ desired = arr; }
|
|
void put(C[] part){ assert(skipOver(desired, part)); }
|
|
}
|
|
foreach (S; TypeTuple!(string, wstring, dstring, char[], wchar[], dchar[]))
|
|
{
|
|
alias ElementEncodingType!S Char;
|
|
S s = to!S("yet another dummy text, yet another ...");
|
|
S from = to!S("yet another");
|
|
S into = to!S("some");
|
|
replaceInto(CheckOutput!(Char)(to!S("some dummy text, some ..."))
|
|
, s, from, into);
|
|
}
|
|
}
|
|
|
|
/+
|
|
Commented out until the replace which has been deprecated has been removed.
|
|
I'd love to just remove it in favor of replaceInPlace, but then code would then
|
|
use this version of replaceInPlace and silently break. So, it's here so that it
|
|
can be used once replace has not only been deprecated but removed, but
|
|
until then, it's commented out.
|
|
|
|
/++
|
|
Replaces elements from $(D array) with indices ranging from $(D from)
|
|
(inclusive) to $(D to) (exclusive) with the range $(D stuff). Returns a new
|
|
array without changing the contents of $(D subject).
|
|
|
|
Examples:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
--------------------
|
|
auto a = [ 1, 2, 3, 4 ];
|
|
auto b = a.replace(1, 3, [ 9, 9, 9 ]);
|
|
assert(a == [ 1, 2, 3, 4 ]);
|
|
assert(b == [ 1, 9, 9, 9, 4 ]);
|
|
--------------------
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
+/
|
|
T[] replace(T, Range)(T[] subject, size_t from, size_t to, Range stuff)
|
|
if(isInputRange!Range &&
|
|
(is(ElementType!Range : T) ||
|
|
isSomeString!(T[]) && is(ElementType!Range : dchar)))
|
|
{
|
|
static if(hasLength!Range && is(ElementEncodingType!Range : T))
|
|
{
|
|
assert(from <= to);
|
|
immutable sliceLen = to - from;
|
|
auto retval = new Unqual!(T)[](subject.length - sliceLen + stuff.length);
|
|
retval[0 .. from] = subject[0 .. from];
|
|
|
|
if(!stuff.empty)
|
|
copy(stuff, retval[from .. from + stuff.length]);
|
|
|
|
retval[from + stuff.length .. $] = subject[to .. $];
|
|
return cast(T[])retval;
|
|
}
|
|
else
|
|
{
|
|
auto app = appender!(T[])();
|
|
app.put(subject[0 .. from]);
|
|
app.put(stuff);
|
|
app.put(subject[to .. $]);
|
|
return app.data;
|
|
}
|
|
}
|
|
|
|
//Verify Examples.
|
|
unittest
|
|
{
|
|
auto a = [ 1, 2, 3, 4 ];
|
|
auto b = a.replace(1, 3, [ 9, 9, 9 ]);
|
|
assert(a == [ 1, 2, 3, 4 ]);
|
|
assert(b == [ 1, 9, 9, 9, 4 ]);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto a = [ 1, 2, 3, 4 ];
|
|
assert(replace(a, 0, 0, [5, 6, 7]) == [5, 6, 7, 1, 2, 3, 4]);
|
|
assert(replace(a, 0, 2, cast(int[])[]) == [3, 4]);
|
|
assert(replace(a, 0, 4, [5, 6, 7]) == [5, 6, 7]);
|
|
assert(replace(a, 0, 2, [5, 6, 7]) == [5, 6, 7, 3, 4]);
|
|
assert(replace(a, 2, 4, [5, 6, 7]) == [1, 2, 5, 6, 7]);
|
|
|
|
assert(replace(a, 0, 0, filter!"true"([5, 6, 7])) == [5, 6, 7, 1, 2, 3, 4]);
|
|
assert(replace(a, 0, 2, filter!"true"(cast(int[])[])) == [3, 4]);
|
|
assert(replace(a, 0, 4, filter!"true"([5, 6, 7])) == [5, 6, 7]);
|
|
assert(replace(a, 0, 2, filter!"true"([5, 6, 7])) == [5, 6, 7, 3, 4]);
|
|
assert(replace(a, 2, 4, filter!"true"([5, 6, 7])) == [1, 2, 5, 6, 7]);
|
|
assert(a == [ 1, 2, 3, 4 ]);
|
|
|
|
auto testStr(T, U)(string file = __FILE__, size_t line = __LINE__)
|
|
{
|
|
|
|
auto l = to!T("hello");
|
|
auto r = to!U(" world");
|
|
|
|
enforce(replace(l, 0, 0, r) == " worldhello",
|
|
new AssertError("testStr failure 1", file, line));
|
|
enforce(replace(l, 0, 3, r) == " worldlo",
|
|
new AssertError("testStr failure 2", file, line));
|
|
enforce(replace(l, 3, l.length, r) == "hel world",
|
|
new AssertError("testStr failure 3", file, line));
|
|
enforce(replace(l, 0, l.length, r) == " world",
|
|
new AssertError("testStr failure 4", file, line));
|
|
enforce(replace(l, l.length, l.length, r) == "hello world",
|
|
new AssertError("testStr failure 5", file, line));
|
|
}
|
|
|
|
testStr!(string, string)();
|
|
testStr!(string, wstring)();
|
|
testStr!(string, dstring)();
|
|
testStr!(wstring, string)();
|
|
testStr!(wstring, wstring)();
|
|
testStr!(wstring, dstring)();
|
|
testStr!(dstring, string)();
|
|
testStr!(dstring, wstring)();
|
|
testStr!(dstring, dstring)();
|
|
}
|
|
+/
|
|
|
|
/++
|
|
Replaces elements from $(D array) with indices ranging from $(D from)
|
|
(inclusive) to $(D to) (exclusive) with the range $(D stuff). Expands or
|
|
shrinks the array as needed.
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
---
|
|
int[] a = [ 1, 2, 3, 4 ];
|
|
a.replaceInPlace(1, 3, [ 9, 9, 9 ]);
|
|
assert(a == [ 1, 9, 9, 9, 4 ]);
|
|
---
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
+/
|
|
void replaceInPlace(T, Range)(ref T[] array, size_t from, size_t to, Range stuff)
|
|
if(isDynamicArray!Range &&
|
|
is(ElementEncodingType!Range : T) &&
|
|
!is(T == const T) &&
|
|
!is(T == immutable T))
|
|
{
|
|
if (overlap(array, stuff))
|
|
{
|
|
// use slower/conservative method
|
|
array = array[0 .. from] ~ stuff ~ array[to .. $];
|
|
}
|
|
else if (stuff.length <= to - from)
|
|
{
|
|
// replacement reduces length
|
|
immutable stuffEnd = from + stuff.length;
|
|
array[from .. stuffEnd] = stuff[];
|
|
array = remove(array, tuple(stuffEnd, to));
|
|
}
|
|
else
|
|
{
|
|
// replacement increases length
|
|
// @@@TODO@@@: optimize this
|
|
immutable replaceLen = to - from;
|
|
array[from .. to] = stuff[0 .. replaceLen];
|
|
insertInPlace(array, to, stuff[replaceLen .. $]);
|
|
}
|
|
}
|
|
|
|
void replaceInPlace(T, Range)(ref T[] array, size_t from, size_t to, Range stuff)
|
|
if(isInputRange!Range &&
|
|
((!isDynamicArray!Range && is(ElementType!Range : T)) ||
|
|
(isDynamicArray!Range && is(ElementType!Range : T) &&
|
|
(is(T == const T) || is(T == immutable T))) ||
|
|
isSomeString!(T[]) && is(ElementType!Range : dchar)))
|
|
{
|
|
auto app = appender!(T[])();
|
|
app.put(array[0 .. from]);
|
|
app.put(stuff);
|
|
app.put(array[to .. $]);
|
|
array = app.data;
|
|
|
|
//This simplified version can be used once the old replace has been removed
|
|
//and the new one uncommented out.
|
|
//array = replace(array, from, to stuff);
|
|
}
|
|
|
|
//Verify Examples.
|
|
unittest
|
|
{
|
|
int[] a = [1, 4, 5];
|
|
replaceInPlace(a, 1u, 2u, [2, 3, 4]);
|
|
assert(a == [1, 2, 3, 4, 5]);
|
|
replaceInPlace(a, 1u, 2u, cast(int[])[]);
|
|
assert(a == [1, 3, 4, 5]);
|
|
replaceInPlace(a, 1u, 3u, a[2 .. 4]);
|
|
assert(a == [1, 4, 5, 5]);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
bool test(T, U, V)(T orig, size_t from, size_t to, U toReplace, V result,
|
|
string file = __FILE__, size_t line = __LINE__)
|
|
{
|
|
{
|
|
static if(is(T == typeof(T.dup)))
|
|
auto a = orig.dup;
|
|
else
|
|
auto a = orig.idup;
|
|
|
|
a.replaceInPlace(from, to, toReplace);
|
|
if(!std.algorithm.equal(a, result))
|
|
return false;
|
|
}
|
|
|
|
static if(isInputRange!U)
|
|
{
|
|
orig.replaceInPlace(from, to, filter!"true"(toReplace));
|
|
return std.algorithm.equal(orig, result);
|
|
}
|
|
else
|
|
return true;
|
|
}
|
|
|
|
assert(test([1, 2, 3, 4], 0, 0, [5, 6, 7], [5, 6, 7, 1, 2, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 0, 2, cast(int[])[], [3, 4]));
|
|
assert(test([1, 2, 3, 4], 0, 4, [5, 6, 7], [5, 6, 7]));
|
|
assert(test([1, 2, 3, 4], 0, 2, [5, 6, 7], [5, 6, 7, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 2, 4, [5, 6, 7], [1, 2, 5, 6, 7]));
|
|
|
|
assert(test([1, 2, 3, 4], 0, 0, filter!"true"([5, 6, 7]), [5, 6, 7, 1, 2, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 0, 2, filter!"true"(cast(int[])[]), [3, 4]));
|
|
assert(test([1, 2, 3, 4], 0, 4, filter!"true"([5, 6, 7]), [5, 6, 7]));
|
|
assert(test([1, 2, 3, 4], 0, 2, filter!"true"([5, 6, 7]), [5, 6, 7, 3, 4]));
|
|
assert(test([1, 2, 3, 4], 2, 4, filter!"true"([5, 6, 7]), [1, 2, 5, 6, 7]));
|
|
|
|
auto testStr(T, U)(string file = __FILE__, size_t line = __LINE__)
|
|
{
|
|
|
|
auto l = to!T("hello");
|
|
auto r = to!U(" world");
|
|
|
|
enforce(test(l, 0, 0, r, " worldhello"),
|
|
new AssertError("testStr failure 1", file, line));
|
|
enforce(test(l, 0, 3, r, " worldlo"),
|
|
new AssertError("testStr failure 2", file, line));
|
|
enforce(test(l, 3, l.length, r, "hel world"),
|
|
new AssertError("testStr failure 3", file, line));
|
|
enforce(test(l, 0, l.length, r, " world"),
|
|
new AssertError("testStr failure 4", file, line));
|
|
enforce(test(l, l.length, l.length, r, "hello world"),
|
|
new AssertError("testStr failure 5", file, line));
|
|
}
|
|
|
|
testStr!(string, string)();
|
|
testStr!(string, wstring)();
|
|
testStr!(string, dstring)();
|
|
testStr!(wstring, string)();
|
|
testStr!(wstring, wstring)();
|
|
testStr!(wstring, dstring)();
|
|
testStr!(dstring, string)();
|
|
testStr!(dstring, wstring)();
|
|
testStr!(dstring, dstring)();
|
|
}
|
|
|
|
/++
|
|
Replaces the first occurrence of $(D from) with $(D to) in $(D a). Returns a
|
|
new array without changing the contents of $(D subject), or the original
|
|
array if no match is found.
|
|
+/
|
|
E[] replaceFirst(E, R1, R2)(E[] subject, R1 from, R2 to)
|
|
if (isDynamicArray!(E[]) &&
|
|
isForwardRange!R1 && is(typeof(appender!(E[])().put(from[0 .. 1]))) &&
|
|
isForwardRange!R2 && is(typeof(appender!(E[])().put(to[0 .. 1]))))
|
|
{
|
|
if (from.empty) return subject;
|
|
auto balance = std.algorithm.find(subject, from.save);
|
|
if (balance.empty) return subject;
|
|
auto app = appender!(E[])();
|
|
app.put(subject[0 .. subject.length - balance.length]);
|
|
app.put(to.save);
|
|
app.put(balance[from.length .. $]);
|
|
|
|
return app.data;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
debug(std_array) printf("array.replaceFirst.unittest\n");
|
|
|
|
foreach(S; TypeTuple!(string, wstring, dstring, char[], wchar[], dchar[],
|
|
const(char[]), immutable(char[])))
|
|
{
|
|
alias Unqual!S T;
|
|
|
|
auto s = to!S("This is a foo foo list");
|
|
auto from = to!T("foo");
|
|
auto into = to!T("silly");
|
|
|
|
S r1 = replaceFirst(s, from, into);
|
|
assert(cmp(r1, "This is a silly foo list") == 0);
|
|
|
|
S r2 = replaceFirst(r1, from, into);
|
|
assert(cmp(r2, "This is a silly silly list") == 0);
|
|
|
|
S r3 = replaceFirst(s, to!T(""), into);
|
|
assert(cmp(r3, "This is a foo foo list") == 0);
|
|
|
|
assert(replaceFirst(r3, to!T("won't find"), to!T("whatever")) is r3);
|
|
}
|
|
}
|
|
|
|
//Bug# 8187
|
|
unittest
|
|
{
|
|
auto res = ["a", "a"];
|
|
assert(replace(res, "a", "b") == ["b", "b"]);
|
|
assert(replaceFirst(res, "a", "b") == ["b", "a"]);
|
|
}
|
|
|
|
/++
|
|
Returns an array that is $(D s) with $(D slice) replaced by
|
|
$(D replacement[]).
|
|
+/
|
|
inout(T)[] replaceSlice(T)(inout(T)[] s, in T[] slice, in T[] replacement)
|
|
in
|
|
{
|
|
// Verify that slice[] really is a slice of s[]
|
|
assert(overlap(s, slice) is slice);
|
|
}
|
|
body
|
|
{
|
|
auto result = new T[s.length - slice.length + replacement.length];
|
|
immutable so = slice.ptr - s.ptr;
|
|
result[0 .. so] = s[0 .. so];
|
|
result[so .. so + replacement.length] = replacement[];
|
|
result[so + replacement.length .. result.length] =
|
|
s[so + slice.length .. s.length];
|
|
|
|
return cast(inout(T)[]) result;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
debug(std_array) printf("array.replaceSlice.unittest\n");
|
|
|
|
string s = "hello";
|
|
string slice = s[2 .. 4];
|
|
|
|
auto r = replaceSlice(s, slice, "bar");
|
|
int i;
|
|
i = cmp(r, "hebaro");
|
|
assert(i == 0);
|
|
}
|
|
|
|
/**
|
|
Implements an output range that appends data to an array. This is
|
|
recommended over $(D a ~= data) when appending many elements because it is more
|
|
efficient.
|
|
|
|
Example:
|
|
$(D_RUN_CODE
|
|
$(ARGS
|
|
----
|
|
auto app = appender!string();
|
|
string b = "abcdefg";
|
|
foreach (char c; b) app.put(c);
|
|
assert(app.data == "abcdefg");
|
|
|
|
int[] a = [ 1, 2 ];
|
|
auto app2 = appender(a);
|
|
app2.put(3);
|
|
app2.put([ 4, 5, 6 ]);
|
|
assert(app2.data == [ 1, 2, 3, 4, 5, 6 ]);
|
|
----
|
|
), $(ARGS), $(ARGS), $(ARGS import std.array;))
|
|
*/
|
|
struct Appender(A : T[], T)
|
|
{
|
|
private struct Data
|
|
{
|
|
size_t capacity;
|
|
Unqual!(T)[] arr;
|
|
}
|
|
|
|
private Data* _data;
|
|
|
|
/**
|
|
Construct an appender with a given array. Note that this does not copy the
|
|
data. If the array has a larger capacity as determined by arr.capacity,
|
|
it will be used by the appender. After initializing an appender on an array,
|
|
appending to the original array will reallocate.
|
|
*/
|
|
this(T[] arr)
|
|
{
|
|
// initialize to a given array.
|
|
_data = new Data;
|
|
_data.arr = cast(Unqual!(T)[])arr;
|
|
|
|
if (__ctfe)
|
|
return;
|
|
|
|
// We want to use up as much of the block the array is in as possible.
|
|
// if we consume all the block that we can, then array appending is
|
|
// safe WRT built-in append, and we can use the entire block.
|
|
auto cap = arr.capacity;
|
|
if(cap > arr.length)
|
|
arr.length = cap;
|
|
// we assume no reallocation occurred
|
|
assert(arr.ptr is _data.arr.ptr);
|
|
_data.capacity = arr.length;
|
|
}
|
|
|
|
/**
|
|
Reserve at least newCapacity elements for appending. Note that more elements
|
|
may be reserved than requested. If newCapacity < capacity, then nothing is
|
|
done.
|
|
*/
|
|
void reserve(size_t newCapacity)
|
|
{
|
|
if(!_data)
|
|
_data = new Data;
|
|
if(_data.capacity < newCapacity)
|
|
{
|
|
// need to increase capacity
|
|
immutable len = _data.arr.length;
|
|
if (__ctfe)
|
|
{
|
|
_data.arr.length = newCapacity;
|
|
_data.arr = _data.arr[0..len];
|
|
_data.capacity = newCapacity;
|
|
return;
|
|
}
|
|
immutable growsize = (newCapacity - len) * T.sizeof;
|
|
auto u = GC.extend(_data.arr.ptr, growsize, growsize);
|
|
if(u)
|
|
{
|
|
// extend worked, update the capacity
|
|
_data.capacity = u / T.sizeof;
|
|
}
|
|
else
|
|
{
|
|
// didn't work, must reallocate
|
|
auto bi = GC.qalloc(newCapacity * T.sizeof,
|
|
(typeid(T[]).next.flags & 1) ? 0 : GC.BlkAttr.NO_SCAN);
|
|
_data.capacity = bi.size / T.sizeof;
|
|
if(len)
|
|
memcpy(bi.base, _data.arr.ptr, len * T.sizeof);
|
|
_data.arr = (cast(Unqual!(T)*)bi.base)[0..len];
|
|
// leave the old data, for safety reasons
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
Returns the capacity of the array (the maximum number of elements the
|
|
managed array can accommodate before triggering a reallocation). If any
|
|
appending will reallocate, $(D capacity) returns $(D 0).
|
|
*/
|
|
@property size_t capacity() const
|
|
{
|
|
return _data ? _data.capacity : 0;
|
|
}
|
|
|
|
/**
|
|
Returns the managed array.
|
|
*/
|
|
@property inout(T)[] data() inout
|
|
{
|
|
return cast(typeof(return))(_data ? _data.arr : null);
|
|
}
|
|
|
|
// ensure we can add nelems elements, resizing as necessary
|
|
private void ensureAddable(size_t nelems)
|
|
{
|
|
if(!_data)
|
|
_data = new Data;
|
|
immutable len = _data.arr.length;
|
|
immutable reqlen = len + nelems;
|
|
if (reqlen > _data.capacity)
|
|
{
|
|
if (__ctfe)
|
|
{
|
|
_data.arr.length = reqlen;
|
|
_data.arr = _data.arr[0..len];
|
|
_data.capacity = reqlen;
|
|
return;
|
|
}
|
|
// Time to reallocate.
|
|
// We need to almost duplicate what's in druntime, except we
|
|
// have better access to the capacity field.
|
|
auto newlen = newCapacity(reqlen);
|
|
// first, try extending the current block
|
|
auto u = GC.extend(_data.arr.ptr, nelems * T.sizeof, (newlen - len) * T.sizeof);
|
|
if(u)
|
|
{
|
|
// extend worked, update the capacity
|
|
_data.capacity = u / T.sizeof;
|
|
}
|
|
else
|
|
{
|
|
// didn't work, must reallocate
|
|
auto bi = GC.qalloc(newlen * T.sizeof,
|
|
(typeid(T[]).next.flags & 1) ? 0 : GC.BlkAttr.NO_SCAN);
|
|
_data.capacity = bi.size / T.sizeof;
|
|
if(len)
|
|
memcpy(bi.base, _data.arr.ptr, len * T.sizeof);
|
|
_data.arr = (cast(Unqual!(T)*)bi.base)[0..len];
|
|
// leave the old data, for safety reasons
|
|
}
|
|
}
|
|
}
|
|
|
|
private static size_t newCapacity(size_t newlength)
|
|
{
|
|
long mult = 100 + (1000L) / (bsr(newlength * T.sizeof) + 1);
|
|
// limit to doubling the length, we don't want to grow too much
|
|
if(mult > 200)
|
|
mult = 200;
|
|
auto newext = cast(size_t)((newlength * mult + 99) / 100);
|
|
return newext > newlength ? newext : newlength;
|
|
}
|
|
|
|
/**
|
|
Appends one item to the managed array.
|
|
*/
|
|
void put(U)(U item) if (isImplicitlyConvertible!(U, T) ||
|
|
isSomeChar!T && isSomeChar!U)
|
|
{
|
|
static if (isSomeChar!T && isSomeChar!U && T.sizeof < U.sizeof)
|
|
{
|
|
// must do some transcoding around here
|
|
Unqual!T[T.sizeof == 1 ? 4 : 2] encoded;
|
|
auto len = std.utf.encode(encoded, item);
|
|
put(encoded[0 .. len]);
|
|
}
|
|
else
|
|
{
|
|
ensureAddable(1);
|
|
immutable len = _data.arr.length;
|
|
_data.arr.ptr[len] = cast(Unqual!T)item;
|
|
_data.arr = _data.arr.ptr[0 .. len + 1];
|
|
}
|
|
}
|
|
|
|
// Const fixing hack.
|
|
void put(Range)(Range items)
|
|
if(isInputRange!(Unqual!Range) && !isInputRange!Range) {
|
|
alias put!(Unqual!Range) p;
|
|
p(items);
|
|
}
|
|
|
|
/**
|
|
Appends an entire range to the managed array.
|
|
*/
|
|
void put(Range)(Range items) if (isInputRange!Range
|
|
&& is(typeof(Appender.init.put(items.front))))
|
|
{
|
|
// note, we disable this branch for appending one type of char to
|
|
// another because we can't trust the length portion.
|
|
static if (!(isSomeChar!T && isSomeChar!(ElementType!Range) &&
|
|
!is(Range == Unqual!T[]) &&
|
|
!is(Range == const(T)[]) &&
|
|
!is(Range == immutable(T)[])) &&
|
|
is(typeof(items.length) == size_t))
|
|
{
|
|
// optimization -- if this type is something other than a string,
|
|
// and we are adding exactly one element, call the version for one
|
|
// element.
|
|
static if(!isSomeChar!T)
|
|
{
|
|
if(items.length == 1)
|
|
{
|
|
put(items.front);
|
|
return;
|
|
}
|
|
}
|
|
|
|
// make sure we have enough space, then add the items
|
|
ensureAddable(items.length);
|
|
immutable len = _data.arr.length;
|
|
immutable newlen = len + items.length;
|
|
_data.arr = _data.arr.ptr[0..newlen];
|
|
static if(is(typeof(_data.arr[] = items[])))
|
|
{
|
|
_data.arr.ptr[len..newlen] = items[];
|
|
}
|
|
else
|
|
{
|
|
for(size_t i = len; !items.empty; items.popFront(), ++i)
|
|
_data.arr.ptr[i] = cast(Unqual!T)items.front;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//pragma(msg, Range.stringof);
|
|
// Generic input range
|
|
for (; !items.empty; items.popFront())
|
|
{
|
|
put(items.front);
|
|
}
|
|
}
|
|
}
|
|
|
|
// only allow overwriting data on non-immutable and non-const data
|
|
static if(!is(T == immutable) && !is(T == const))
|
|
{
|
|
/**
|
|
Clears the managed array. This allows the elements of the array to be reused
|
|
for appending.
|
|
|
|
Note that clear is disabled for immutable or const element types, due to the
|
|
possibility that $(D Appender) might overwrite immutable data.
|
|
*/
|
|
void clear()
|
|
{
|
|
if (_data)
|
|
{
|
|
_data.arr = _data.arr.ptr[0..0];
|
|
}
|
|
}
|
|
|
|
/**
|
|
Shrinks the managed array to the given length. Passing in a length that's
|
|
greater than the current array length throws an enforce exception.
|
|
*/
|
|
void shrinkTo(size_t newlength)
|
|
{
|
|
if(_data)
|
|
{
|
|
enforce(newlength <= _data.arr.length);
|
|
_data.arr = _data.arr.ptr[0..newlength];
|
|
}
|
|
else
|
|
enforce(newlength == 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
An appender that can update an array in-place. It forwards all calls to an
|
|
underlying appender implementation. Any calls made to the appender also update
|
|
the pointer to the original array passed in.
|
|
*/
|
|
struct RefAppender(A : T[], T)
|
|
{
|
|
private
|
|
{
|
|
Appender!(A, T) impl;
|
|
T[] *arr;
|
|
}
|
|
|
|
/**
|
|
Construct a ref appender with a given array reference. This does not copy the
|
|
data. If the array has a larger capacity as determined by arr.capacity, it
|
|
will be used by the appender. $(D RefAppender) assumes that arr is a non-null
|
|
value.
|
|
|
|
Note, do not use builtin appending (i.e. ~=) on the original array passed in
|
|
until you are done with the appender, because calls to the appender override
|
|
those appends.
|
|
*/
|
|
this(T[] *arr)
|
|
{
|
|
impl = Appender!(A, T)(*arr);
|
|
this.arr = arr;
|
|
}
|
|
|
|
auto opDispatch(string fn, Args...)(Args args) if (is(typeof(mixin("impl." ~ fn ~ "(args)"))))
|
|
{
|
|
// we do it this way because we can't cache a void return
|
|
scope(exit) *this.arr = impl.data;
|
|
mixin("return impl." ~ fn ~ "(args);");
|
|
}
|
|
|
|
/**
|
|
Returns the capacity of the array (the maximum number of elements the
|
|
managed array can accommodate before triggering a reallocation). If any
|
|
appending will reallocate, $(D capacity) returns $(D 0).
|
|
*/
|
|
@property size_t capacity() const
|
|
{
|
|
return impl.capacity;
|
|
}
|
|
|
|
/**
|
|
Returns the managed array.
|
|
*/
|
|
@property inout(T)[] data() inout
|
|
{
|
|
return impl.data;
|
|
}
|
|
}
|
|
|
|
/++
|
|
Convenience function that returns an $(D Appender!(A)) object initialized
|
|
with $(D array).
|
|
+/
|
|
Appender!(E[]) appender(A : E[], E)(A array = null)
|
|
{
|
|
return Appender!(E[])(array);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto app = appender!(char[])();
|
|
string b = "abcdefg";
|
|
foreach (char c; b) app.put(c);
|
|
assert(app.data == "abcdefg");
|
|
|
|
int[] a = [ 1, 2 ];
|
|
auto app2 = appender(a);
|
|
assert(app2.data == [ 1, 2 ]);
|
|
app2.put(3);
|
|
app2.put([ 4, 5, 6 ][]);
|
|
assert(app2.data == [ 1, 2, 3, 4, 5, 6 ]);
|
|
app2.put([ 7 ]);
|
|
assert(app2.data == [ 1, 2, 3, 4, 5, 6, 7 ]);
|
|
|
|
app2.reserve(5);
|
|
assert(app2.capacity >= 5);
|
|
|
|
app2.shrinkTo(3);
|
|
assert(app2.data == [ 1, 2, 3 ]);
|
|
assertThrown(app2.shrinkTo(5));
|
|
|
|
const app3 = app2;
|
|
assert(app3.capacity >= 3);
|
|
assert(app3.data == [1, 2, 3]);
|
|
|
|
auto app4 = appender([]);
|
|
app4.shrinkTo(0);
|
|
|
|
// Issue 5663 tests
|
|
{
|
|
Appender!(char[]) app5663i;
|
|
assertNotThrown(app5663i.put("\xE3"));
|
|
assert(app5663i.data == "\xE3");
|
|
|
|
Appender!(char[]) app5663c;
|
|
assertNotThrown(app5663c.put(cast(const(char)[])"\xE3"));
|
|
assert(app5663c.data == "\xE3");
|
|
|
|
Appender!(char[]) app5663m;
|
|
assertNotThrown(app5663m.put(cast(char[])"\xE3"));
|
|
assert(app5663m.data == "\xE3");
|
|
}
|
|
}
|
|
|
|
/++
|
|
Convenience function that returns a $(D RefAppender!(A)) object initialized
|
|
with $(D array). Don't use null for the $(D array) pointer, use the other
|
|
version of $(D appender) instead.
|
|
+/
|
|
RefAppender!(E[]) appender(A : E[]*, E)(A array)
|
|
{
|
|
return RefAppender!(E[])(array);
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto arr = new char[0];
|
|
auto app = appender(&arr);
|
|
string b = "abcdefg";
|
|
foreach (char c; b) app.put(c);
|
|
assert(app.data == "abcdefg");
|
|
assert(arr == "abcdefg");
|
|
|
|
int[] a = [ 1, 2 ];
|
|
auto app2 = appender(&a);
|
|
assert(app2.data == [ 1, 2 ]);
|
|
assert(a == [ 1, 2 ]);
|
|
app2.put(3);
|
|
app2.put([ 4, 5, 6 ][]);
|
|
assert(app2.data == [ 1, 2, 3, 4, 5, 6 ]);
|
|
assert(a == [ 1, 2, 3, 4, 5, 6 ]);
|
|
|
|
app2.reserve(5);
|
|
assert(app2.capacity >= 5);
|
|
|
|
app2.shrinkTo(3);
|
|
assert(app2.data == [ 1, 2, 3 ]);
|
|
assertThrown(app2.shrinkTo(5));
|
|
|
|
const app3 = app2;
|
|
assert(app3.capacity >= 3);
|
|
assert(app3.data == [1, 2, 3]);
|
|
}
|
|
|
|
/*
|
|
A simple slice type only holding pointers to the beginning and the end
|
|
of an array. Experimental duplication of the built-in slice - do not
|
|
use yet.
|
|
*/
|
|
struct SimpleSlice(T)
|
|
{
|
|
private T * _b, _e;
|
|
|
|
this(U...)(U values)
|
|
{
|
|
_b = cast(T*) core.memory.GC.malloc(U.length * T.sizeof);
|
|
_e = _b + U.length;
|
|
foreach (i, Unused; U) _b[i] = values[i];
|
|
}
|
|
|
|
void opAssign(R)(R anotherSlice)
|
|
{
|
|
static if (is(typeof(*_b = anotherSlice)))
|
|
{
|
|
// assign all elements to a value
|
|
foreach (p; _b .. _e)
|
|
{
|
|
*p = anotherSlice;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// assign another slice to this
|
|
enforce(anotherSlice.length == length);
|
|
auto p = _b;
|
|
foreach (p; _b .. _e)
|
|
{
|
|
*p = anotherSlice.front;
|
|
anotherSlice.popFront();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
Range primitives.
|
|
*/
|
|
bool empty() const
|
|
{
|
|
assert(_b <= _e);
|
|
return _b == _e;
|
|
}
|
|
|
|
/// Ditto
|
|
ref T front()
|
|
{
|
|
assert(!empty);
|
|
return *_b;
|
|
}
|
|
|
|
/// Ditto
|
|
void popFront()
|
|
{
|
|
assert(!empty);
|
|
++_b;
|
|
}
|
|
|
|
/// Ditto
|
|
ref T back()
|
|
{
|
|
assert(!empty);
|
|
return _e[-1];
|
|
}
|
|
|
|
/// Ditto
|
|
void popBack()
|
|
{
|
|
assert(!empty);
|
|
--_e;
|
|
}
|
|
|
|
/// Ditto
|
|
T opIndex(size_t n)
|
|
{
|
|
assert(n < length);
|
|
return _b[n];
|
|
}
|
|
|
|
/// Ditto
|
|
const(T) opIndex(size_t n) const
|
|
{
|
|
assert(n < length);
|
|
return _b[n];
|
|
}
|
|
|
|
/// Ditto
|
|
void opIndexAssign(T value, size_t n)
|
|
{
|
|
assert(n < length);
|
|
_b[n] = value;
|
|
}
|
|
|
|
/// Ditto
|
|
SimpleSliceLvalue!T opSlice()
|
|
{
|
|
typeof(return) result = void;
|
|
result._b = _b;
|
|
result._e = _e;
|
|
return result;
|
|
}
|
|
|
|
/// Ditto
|
|
SimpleSliceLvalue!T opSlice(size_t x, size_t y)
|
|
{
|
|
enforce(x <= y && y <= length);
|
|
typeof(return) result = { _b + x, _b + y };
|
|
return result;
|
|
}
|
|
|
|
@property
|
|
{
|
|
/// Returns the length of the slice.
|
|
size_t length() const
|
|
{
|
|
return _e - _b;
|
|
}
|
|
|
|
/**
|
|
Sets the length of the slice. Newly added elements will be filled with
|
|
$(D T.init).
|
|
*/
|
|
void length(size_t newLength)
|
|
{
|
|
immutable oldLength = length;
|
|
_b = cast(T*) core.memory.GC.realloc(_b, newLength * T.sizeof);
|
|
_e = _b + newLength;
|
|
this[oldLength .. $] = T.init;
|
|
}
|
|
}
|
|
|
|
/// Concatenation.
|
|
SimpleSlice opCat(R)(R another)
|
|
{
|
|
immutable newLen = length + another.length;
|
|
typeof(return) result = void;
|
|
result._b = cast(T*)
|
|
core.memory.GC.malloc(newLen * T.sizeof);
|
|
result._e = result._b + newLen;
|
|
result[0 .. this.length] = this;
|
|
result[this.length .. result.length] = another;
|
|
return result;
|
|
}
|
|
|
|
/// Concatenation with rebinding.
|
|
void opCatAssign(R)(R another)
|
|
{
|
|
auto newThis = this ~ another;
|
|
move(newThis, this);
|
|
}
|
|
}
|
|
|
|
// Support for mass assignment
|
|
struct SimpleSliceLvalue(T)
|
|
{
|
|
private SimpleSlice!T _s;
|
|
alias _s this;
|
|
|
|
void opAssign(R)(R anotherSlice)
|
|
{
|
|
static if (is(typeof(*_b = anotherSlice)))
|
|
{
|
|
// assign all elements to a value
|
|
foreach (p; _b .. _e)
|
|
{
|
|
*p = anotherSlice;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// assign another slice to this
|
|
enforce(anotherSlice.length == length);
|
|
auto p = _b;
|
|
foreach (p; _b .. _e)
|
|
{
|
|
*p = anotherSlice.front;
|
|
anotherSlice.popFront();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
unittest
|
|
{
|
|
// SimpleSlice!(int) s;
|
|
|
|
// s = SimpleSlice!(int)(4, 5, 6);
|
|
// assert(equal(s, [4, 5, 6][]));
|
|
// assert(s.length == 3);
|
|
// assert(s[0] == 4);
|
|
// assert(s[1] == 5);
|
|
// assert(s[2] == 6);
|
|
|
|
// assert(s[] == s);
|
|
// assert(s[0 .. s.length] == s);
|
|
// assert(equal(s[0 .. s.length - 1], [4, 5][]));
|
|
|
|
// auto s1 = s ~ s[0 .. 1];
|
|
// assert(equal(s1, [4, 5, 6, 4][]));
|
|
|
|
// assert(s1[3] == 4);
|
|
// s1[3] = 42;
|
|
// assert(s1[3] == 42);
|
|
|
|
// const s2 = s;
|
|
// assert(s2.length == 3);
|
|
// assert(!s2.empty);
|
|
// assert(s2[0] == s[0]);
|
|
|
|
// s[0 .. 2] = 10;
|
|
// assert(equal(s, [10, 10, 6][]));
|
|
|
|
// s ~= [ 5, 9 ][];
|
|
// assert(equal(s, [10, 10, 6, 5, 9][]));
|
|
|
|
// s.length = 7;
|
|
// assert(equal(s, [10, 10, 6, 5, 9, 0, 0][]));
|
|
}
|