[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2017-07-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8680 --- Comment #12 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/dlang/phobos https://github.com/dlang/phobos/commit/efd740e55132a7c0fce4de4263104d599233e066 Improve documentation of std.file.SpanMode (issue 8680)

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2017-07-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8680 --- Comment #11 from Vladimir Panteleev --- (In reply to entheh from comment #10) > (Poor devs who end up fixing this bug - it now contains a very long > discussion and a multitude of separate requests, from 'names are wrong' to > several new feature

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2016-10-16 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8680 Andrei Alexandrescu changed: What|Removed |Added Keywords||bootcamp CC|

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #10 from ent...@cantab.net 2012-09-22 07:09:23 PDT --- (In reply to comment #9) > listdir was deprecated for a very good reason. Would you now kindly consider > the steps to fold this into a Range. Oh wow, I didn't realise dirEntrie

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #9 from Jesse Phillips 2012-09-20 10:00:49 PDT --- (In reply to comment #7) > I suspect we don't need to offer the 'I don't care' option explicitly. People > may as well be specific. Could add a documentation note that the depth-fi

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #8 from ent...@cantab.net 2012-09-19 17:13:31 PDT --- (In reply to comment #7) > I think they are unambiguous, but I have a feeling I know what traversal you > want. I apologise, I meant to say I think they are ambiguous. 'parentFi

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #7 from ent...@cantab.net 2012-09-19 17:10:02 PDT --- (In reply to comment #5) > I know, but they are descriptive of the two most useful traversal types I can > think of. I think they are unambiguous, but I have a feeling I know wha

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #6 from Jesse Phillips 2012-09-19 07:03:06 PDT --- Sorry, you can ignore my code, that's what I get for copy pasting a guess at what it would be. That would be breadth first, which is close, instead they'd need to be some loop that

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #5 from Jesse Phillips 2012-09-18 20:59:48 PDT --- (In reply to comment #4) > Are you saying you want a real breadth-first search to be implemented? Fine, > we > can do that, if it's useful. Note though that it'll intersperse chil

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #4 from ent...@cantab.net 2012-09-18 09:51:31 PDT --- (In reply to comment #3) > Looks like you are still correct. I'm still looking at the desire for useful > traversal of a filesystem. OK, let's explore that: > I do not see sortin

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #3 from Jesse Phillips 2012-09-18 08:04:40 PDT --- (In reply to comment #2) > As for the behaviour on Linux - I don't think this is actually violating the > spec. Probably what you're complaining about is that the directories 'c' a

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 ent...@cantab.net changed: What|Removed |Added CC||ent...@cantab.net --- Comment #2 fr

[Issue 8680] SpanMode.breadth is incorrectly named and implementation fails in Linux

2012-09-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8680 --- Comment #1 from Jesse Phillips 2012-09-17 18:43:39 PDT --- A breadth first traversal is not a good algorithm for filesystem traversal. The described implementation is useful. As shown Linux ReiserFS does not traverse as described in the do