mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
12 lines
205 B
D
12 lines
205 B
D
module imports.test11563std_range;
|
|
|
|
public import imports.test11563std_array;
|
|
|
|
template isInputRange(R)
|
|
{
|
|
enum bool isInputRange = is(typeof(
|
|
{
|
|
R r = void;
|
|
r.popFront();
|
|
}));
|
|
}
|