[Issue 4271] drop/pop methods for std.algorithm.BinaryHeap

2017-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4271 RazvanN changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Issue 4271] drop/pop methods for std.algorithm.BinaryHeap

2016-12-23 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4271 greenify changed: What|Removed |Added CC||greeen...@gmail.com ---

[Issue 4271] drop/pop methods for std.algorithm.BinaryHeap

2016-12-23 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4271 RazvanN changed: What|Removed |Added Keywords||trivial

[Issue 4271] drop/pop methods for std.algorithm.BinaryHeap

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4271 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|future |D2 --

[Issue 4271] drop/pop methods for std.algorithm.BinaryHeap

2011-01-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4271 Andrei Alexandrescu and...@metalanguage.com changed: What|Removed |Added Status|NEW |ASSIGNED

[Issue 4271] drop/pop methods for std.algorithm.BinaryHeap

2010-06-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4271 --- Comment #2 from bearophile_h...@eml.cc 2010-06-04 15:40:21 PDT --- In most of my usages of a heap I don't have just to use the top item or just to pop the top item, I have to pop the top item and then use the popped out item. To perform

[Issue 4271] drop/pop methods for std.algorithm.BinaryHeap

2010-06-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4271 --- Comment #3 from bearophile_h...@eml.cc 2010-06-04 16:00:04 PDT --- Sorry, that was a partially wrong comment, I meant: So I have to use: somefunction(heap.pop(1)[0]); But being this operation so common, I'd like to write simpler code: