Skip to content

Instantly share code, notes, and snippets.

@sinkuu
Created September 19, 2014 12:17
Show Gist options
  • Save sinkuu/6e71c9abbb3608cc8886 to your computer and use it in GitHub Desktop.
Save sinkuu/6e71c9abbb3608cc8886 to your computer and use it in GitHub Desktop.
import std.range;
void main()
{
auto nums = iota(1, 6);
static if (false)
{
// works
auto r1 = refRange(&nums).filter!(i => i < 4);
}
else
{
// not works
auto r1 = refRange(&nums).until(4);
}
auto s1 = r1.save;
r1.popFront();
assert(s1.front == 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment