[Issue 6495] array(file.byLine()) is a problem

2020-03-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6495 Basile-z changed: What|Removed |Added CC|b2.t...@gmx.com | --

[Issue 6495] array(file.byLine()) is a problem

2017-09-13 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6495 Steven Schveighoffer changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 6495] array(file.byLine()) is a problem

2017-08-26 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6495 b2.t...@gmx.com changed: What|Removed |Added CC||b2.t...@gmx.com --- Comment #11 from

[Issue 6495] array(file.byLine()) is a problem

2013-08-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 --- Comment #6 from Andrej Mitrovic andrej.mitrov...@gmail.com 2013-08-01 06:33:14 PDT --- (In reply to comment #4) I like the idea of making byLine non-transient This non-transient term is being used often lately but it has no definition on

[Issue 6495] array(file.byLine()) is a problem

2013-08-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 --- Comment #7 from hst...@quickfur.ath.cx 2013-08-01 09:58:04 PDT --- Transient just means the value of .front changes when you call .popFront(), so you cannot simply assign .front to a variable and expect it to retain its value after you

[Issue 6495] array(file.byLine()) is a problem

2013-08-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 monarchdo...@gmail.com changed: What|Removed |Added CC||monarchdo...@gmail.com ---

[Issue 6495] array(file.byLine()) is a problem

2013-08-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 --- Comment #9 from hst...@quickfur.ath.cx 2013-08-01 10:50:33 PDT --- No, transience is a property of the *range*, not what you do with the data returned by the range. Taking the address of .front technically undefined, since you can't

[Issue 6495] array(file.byLine()) is a problem

2013-08-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 --- Comment #10 from monarchdo...@gmail.com 2013-08-01 11:16:36 PDT --- (In reply to comment #9) Taking the address of .front technically undefined, since you can't guarantee that that's even possible for arbitrary range types (in general,

[Issue 6495] array(file.byLine()) is a problem

2013-07-31 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 --- Comment #5 from hst...@quickfur.ath.cx 2013-07-31 22:18:45 PDT --- I don't like the use of a boolean flag, though. Maybe byLine!CopyBuffer() (default) vs. byLine!ReuseBuffer()? -- Configure issuemail:

[Issue 6495] array(file.byLine()) is a problem

2013-07-31 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 --- Comment #4 from hst...@quickfur.ath.cx 2013-07-31 22:17:25 PDT --- I like the idea of making byLine non-transient by default, but allowing a compile-time option to make it transient when you want to optimize your code (so the user is

[Issue 6495] array(file.byLine()) is a problem

2011-08-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added CC|

[Issue 6495] array(file.byLine()) is a problem

2011-08-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6495 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added Severity|normal |minor ---