Paul Backus

Results 24 issues of Paul Backus

Currently, only `const`, `immutable`, and `inout` implementations of these methods are allowed.

The meaning of a template this parameter is defined by the language spec. [1] Since this is the only meaning such a parameter can possibly have, there is no use...

### System information - **dub version**: 1.26.1 - **OS Platform and distribution**: Debian GNU/Linux 10.10 - **compiler version** dmd-2.097.2 ### Bug Description The output of `dub describe --data=import-paths` contains options...

This example compiles and runs: ``` --- bar.d module bar; --- main.d module main; void main() {} ``` This one doesn't: ``` --- bar.d module bar; --- foo.d module foo;...

Attempting to visit any package's short URL using HTTPS (for example, https://vibe-d.dub.pm) currently fails, because the certificate for `*.dub.pm` is only valid for the domain `analytics.bildhuus.com`.

For example, the [dateformat](https://code.dlang.org/packages/dateformat) package has a `README.md` which is displayed on Bitbucket, but not on code.dlang.org.

Needed to unblock https://github.com/dlang/phobos/pull/8554

This PR addresses [issue 23090][1] for `std.experimental.allocator.building_blocks.region` by splitting the functionality previously accessed using `NullAllocator` out into two new allocators, `BorrowedRegion` and `SharedBorrowedRegion`. The original `Region` and `SharedRegion` are now...

This is necessary to make clients of GCAllocator (e.g., generic containers) usable in @safe code. Memory allocated by GC allocator will still be freed by the GC when it is...

Enhancement

In preparation for the removal of GCAllocator.deallocate and GCAllocator.reallocate, make that functionality available via a new allocator with a different name. Users of GCAllocator that wish to continue using manual...