Re: Case study on ranges and lazy evaluation

2015-07-21 Thread Matt Kline via Digitalmars-d-announce
On Tuesday, 21 July 2015 at 14:34:25 UTC, Kagamin wrote: You assign off_t to size_t, won't compile on 32-bit system. You're safe to use simple `long` for file sizes and offsets. Nice catch! I'll clean that up after work.

Re: Voting for std.experimental.allocator

2015-07-21 Thread Dicebot via Digitalmars-d-announce
On Wednesday, 8 July 2015 at 11:33:03 UTC, Dicebot wrote: Voting ends in 2 weeks, on July 22. Voting ends tomorrow. At this point it is almost impossible to fail so it is up to Phobos team how to proceed with the PR.

Re: Case study on ranges and lazy evaluation

2015-07-21 Thread Kagamin via Digitalmars-d-announce
On Monday, 20 July 2015 at 17:26:31 UTC, Matt Kline wrote: http://bitbashing.io/be-lazy-use-ranges.html You assign off_t to size_t, won't compile on 32-bit system. You're safe to use simple `long` for file sizes and offsets.