Thread overview
calloc for std.experimental.allocator
Jan 11, 2018
Nordlöw
Jan 11, 2018
MrSmith
Jan 12, 2018
Nordlöw
January 11, 2018
Is there no equivalent of `calloc()` for `std.experimental.allocator`, something like

    Allocator.zeroAllocate(size_t numberOfElements)

?
January 11, 2018
On Thursday, 11 January 2018 at 21:09:01 UTC, Nordlöw wrote:
> Is there no equivalent of `calloc()` for `std.experimental.allocator`, something like
>
>     Allocator.zeroAllocate(size_t numberOfElements)
>
> ?

http://dpldocs.info/experimental-docs/std.experimental.allocator.makeArray.4.html
January 12, 2018
On Thursday, 11 January 2018 at 21:57:28 UTC, MrSmith wrote:
> http://dpldocs.info/experimental-docs/std.experimental.allocator.makeArray.4.html

Thanks!