digitalmars.D - std.stdio.writeln should not accept infinite ranges?
- Xinok (12/12) Nov 12 2015 The following code compiles and runs:
- Andrei Alexandrescu (3/15) Nov 12 2015 Piping a program that produces infinite output into less is practical.
- Xinok (7/30) Nov 12 2015 Fair enough. I'm thinking more on the side of safety though and I
- Steven Schveighoffer (5/31) Nov 13 2015 I'm with Andrei on this. It's easy to create infinite loops, this is a
The following code compiles and runs: import std.stdio, std.random; void main() { writeln(rndGen); } Since rndGen is an infinite range, this code runs forever. It seems to be that we need to add a check for isInfinite on writeln and other related functions. Does anybody have a use case where this is actually practical? I don't see a reason for allowing infinite ranges here, considering how easy it is to write "range.take(n)".
Nov 12 2015
On 11/12/2015 08:18 PM, Xinok wrote:The following code compiles and runs: import std.stdio, std.random; void main() { writeln(rndGen); } Since rndGen is an infinite range, this code runs forever. It seems to be that we need to add a check for isInfinite on writeln and other related functions. Does anybody have a use case where this is actually practical? I don't see a reason for allowing infinite ranges here, considering how easy it is to write "range.take(n)".Piping a program that produces infinite output into less is practical. -- Andrei
Nov 12 2015
On Friday, 13 November 2015 at 01:19:22 UTC, Andrei Alexandrescu wrote:On 11/12/2015 08:18 PM, Xinok wrote:Fair enough. I'm thinking more on the side of safety though and I assume that, more often than not, printing an infinite range is unintentional. Should it be this easy to shoot ourselves in the foot? I'm not saying it should be impossible, but just make it explicit that we intended to print an infinite range.The following code compiles and runs: import std.stdio, std.random; void main() { writeln(rndGen); } Since rndGen is an infinite range, this code runs forever. It seems to be that we need to add a check for isInfinite on writeln and other related functions. Does anybody have a use case where this is actually practical? I don't see a reason for allowing infinite ranges here, considering how easy it is to write "range.take(n)".Piping a program that produces infinite output into less is practical. -- Andrei
Nov 12 2015
On 11/12/15 10:21 PM, Xinok wrote:On Friday, 13 November 2015 at 01:19:22 UTC, Andrei Alexandrescu wrote:I'm with Andrei on this. It's easy to create infinite loops, this is a pitfall of programming. Luckily, your foot will heal from this for next time. -SteveOn 11/12/2015 08:18 PM, Xinok wrote:Fair enough. I'm thinking more on the side of safety though and I assume that, more often than not, printing an infinite range is unintentional. Should it be this easy to shoot ourselves in the foot? I'm not saying it should be impossible, but just make it explicit that we intended to print an infinite range.The following code compiles and runs: import std.stdio, std.random; void main() { writeln(rndGen); } Since rndGen is an infinite range, this code runs forever. It seems to be that we need to add a check for isInfinite on writeln and other related functions. Does anybody have a use case where this is actually practical? I don't see a reason for allowing infinite ranges here, considering how easy it is to write "range.take(n)".Piping a program that produces infinite output into less is practical. -- Andrei
Nov 13 2015