Add range primitives that remove several elements
- isOutputRange - popFrontN - popFrontExactly - popBackN - popBackExactly
This commit is contained in:
parent
9422888b6c
commit
87ea1f98dc
@ -59,13 +59,13 @@ in
|
|||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
}
|
}
|
||||||
body
|
do
|
||||||
{
|
{
|
||||||
return array[0];
|
return array[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
pure nothrow @safe @nogc unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
string s = "Wenn die Wunde nicht mehr wehtut, schmerzt die Narbe";
|
string s = "Wenn die Wunde nicht mehr wehtut, schmerzt die Narbe";
|
||||||
static assert(is(typeof(s.front) == immutable char));
|
static assert(is(typeof(s.front) == immutable char));
|
||||||
@ -99,13 +99,13 @@ in
|
|||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
}
|
}
|
||||||
body
|
do
|
||||||
{
|
{
|
||||||
return array[$ - 1];
|
return array[$ - 1];
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
pure nothrow @safe @nogc unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
string s = "Brecht";
|
string s = "Brecht";
|
||||||
static assert(is(typeof(s.back) == immutable char));
|
static assert(is(typeof(s.back) == immutable char));
|
||||||
@ -138,7 +138,7 @@ in
|
|||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
}
|
}
|
||||||
body
|
do
|
||||||
{
|
{
|
||||||
array = array[1 .. $];
|
array = array[1 .. $];
|
||||||
}
|
}
|
||||||
@ -149,13 +149,13 @@ in
|
|||||||
{
|
{
|
||||||
assert(array.length > 0);
|
assert(array.length > 0);
|
||||||
}
|
}
|
||||||
body
|
do
|
||||||
{
|
{
|
||||||
array = array[0 .. $ - 1];
|
array = array[0 .. $ - 1];
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
pure nothrow @safe @nogc unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
wstring array = "Der finstere Ozean der Metaphysik. Nietzsche";
|
wstring array = "Der finstere Ozean der Metaphysik. Nietzsche";
|
||||||
|
|
||||||
@ -184,7 +184,7 @@ pure nothrow @safe @nogc unittest
|
|||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
pure nothrow @safe @nogc unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
int[1] array;
|
int[1] array;
|
||||||
assert(!array.empty);
|
assert(!array.empty);
|
||||||
@ -209,7 +209,7 @@ pure nothrow @safe @nogc unittest
|
|||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
pure nothrow @safe @nogc unittest
|
@nogc nothrow pure @safe unittest
|
||||||
{
|
{
|
||||||
ubyte[8] array;
|
ubyte[8] array;
|
||||||
auto slice = array.save;
|
auto slice = array.save;
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user