Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
imports
/
std11069array.d
blob: 561676d52814101bd1d563041589aedeeacc528f [
file
] [
log
] [
blame
]
module
imports
.
std11069array
;
@property
bool
empty
(
T
)(
in
T
[]
a
)
@safe
pure nothrow
{
return
!
a
.
length
;
}
void
popFront
(
T
)(
ref
T
[]
a
)
@safe
pure nothrow
{
a
=
a
[
1
..
$
];
}
@property
ref
T front
(
T
)(
T
[]
a
)
@safe
pure nothrow
{
return
a
[
0
];
}