[Issue 15863] .length for AA.byKey

2016-04-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15863

Martin Nowak  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||c...@dawg.eu
 Resolution|--- |WONTFIX

--- Comment #2 from Martin Nowak  ---
You can use takeExactly for this.
http://dlang.org/phobos/std_range.html#.takeExactly

---
aa.byKey.takeExactly(aa.length)
aa.byValue.takeExactly(aa.length)
---

--


[Issue 15863] .length for AA.byKey

2016-04-02 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15863

ZombineDev  changed:

   What|Removed |Added

   Keywords||pull
 CC||petar.p.ki...@gmail.com

--


[Issue 15863] .length for AA.byKey

2016-04-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15863

--- Comment #1 from Yuxuan Shui  ---
So I gave it a try:

https://github.com/D-Programming-Language/druntime/pull/1530

--