]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/runnable/imports/std11069array.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / imports / std11069array.d
CommitLineData
b4c522fa
IB
1module imports.std11069array;
2
3@property bool empty(T)(in T[] a) @safe pure nothrow
4{
5 return !a.length;
6}
7
8void popFront(T)(ref T[] a) @safe pure nothrow
9{
10 a = a[1 .. $];
11}
12
13@property ref T front(T)(T[] a) @safe pure nothrow
14{
15 return a[0];
16}