Re: Release of std.io v0.3.0

2020-08-04 Thread Dejan Lekic via Digitalmars-d-announce
On Sunday, 26 July 2020 at 17:09:07 UTC, Steven Schveighoffer wrote: I have released a minor improvement to std.io [1], which adds support for opening the standard handles (stdin, stdout, stderr) [2]. I always hoped, since the stream package has been deprecated, that std.io will get merged

Re: Release of std.io v0.3.0

2020-07-31 Thread Steven Schveighoffer via Digitalmars-d-announce
On 7/31/20 5:20 AM, WebFreak001 wrote: On Sunday, 26 July 2020 at 17:09:07 UTC, Steven Schveighoffer wrote: I have released a minor improvement to std.io [1], which adds support for opening the standard handles (stdin, stdout, stderr) [2]. In order to make this work, I also had to add a

Re: Release of std.io v0.3.0

2020-07-31 Thread WebFreak001 via Digitalmars-d-announce
On Sunday, 26 July 2020 at 17:09:07 UTC, Steven Schveighoffer wrote: I have released a minor improvement to std.io [1], which adds support for opening the standard handles (stdin, stdout, stderr) [2]. In order to make this work, I also had to add a feature to IOs that allows you to

Re: Release of std.io v0.3.0

2020-07-28 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 28 July 2020 at 18:23:45 UTC, Steven Schveighoffer wrote: On 7/28/20 10:08 AM, Per Nordlöw wrote: Be free to copy what you like from https://github.com/nordlow/phobos-next/blob/master/src/nxt/zio.d Thanks. I actually have zip support in iopipe (it requires buffering anyway):

Re: Release of std.io v0.3.0

2020-07-28 Thread Steven Schveighoffer via Digitalmars-d-announce
On 7/28/20 10:08 AM, Per Nordlöw wrote: Be free to copy what you like from https://github.com/nordlow/phobos-next/blob/master/src/nxt/zio.d Thanks. I actually have zip support in iopipe (it requires buffering anyway): http://schveiguy.github.io/iopipe/iopipe/zip.html std.io is very low

Re: Release of std.io v0.3.0

2020-07-28 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 26 July 2020 at 17:09:07 UTC, Steven Schveighoffer wrote: -Steve [1] https://code.dlang.org/packages/io [2] https://martinnowak.github.io/io/std/io/driver.html [3] https://martinnowak.github.io/io/std/io/file/File.this.html Thanks. Be free to copy what you like from

Release of std.io v0.3.0

2020-07-26 Thread Steven Schveighoffer via Digitalmars-d-announce
I have released a minor improvement to std.io [1], which adds support for opening the standard handles (stdin, stdout, stderr) [2]. In order to make this work, I also had to add a feature to IOs that allows you to temporarily use a file descriptor/handle [3]. As of now, it hasn't updated on