https://issues.dlang.org/show_bug.cgi?id=9119
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #12 from [email protected] --- Now that all the PR's have merged, here's the current situation: - druntime now provides a byKeyValue method that returns a forward range of opaque structs with .key and .value members. - std.array in Phobos now provides a "nice" method byPair that wraps around byKeyValue and returns a forward range of Tuple's of keys and values. So this both satisfies the OP's original request (for .key and .value) and later requests for Tuple compatibility. --
