zopsicle
zopsicle
doc2 inserts the in/out contracts in HTML. However, CSS causes them to be hidden. Is there a reason for this? I think it would be nice to show the contracts...
Vector.free is annotated `scope` on the `this` parameter. It then passes a member of `this` to alloc.dispose in `@trusted` lambda, but does not verify that `alloc.dispose` has a `scope` attribute...
### Input C/C++ Header ```c typedef enum VkResult { VK_SUCCESS = 0, VK_NOT_READY = 1, // ... } VkResult; ``` ### Bindgen Invocation ``` $ bindgen --no-prepend-enum-name --newtype-enum VkResult input.h...
Fixes #567. This fixes the problem but I am not sure what would be the best way/place to generate the file with the nqpconfig subroutine definition in it. Also missing...
This line uses the MoarVM prefix to find template.html, whereas the file is in fact under the NQP prefix: https://github.com/perl6/nqp/blob/fd8a7e5f9255d062e230cb2774dbf25c3d254127/src/vm/moar/HLL/Backend.nqp#L618 Error when running with --profile: > Could not locate profiler/template.html;...
The documentation for `IStream::read` reads: > If read(c,n) reads the last byte from the file it returns false, otherwise it returns true. The man page for `feof` reads: > The...
[DBD::SQLite][ref] supports custom collations. This is a useful feature for e.g. sorting version numbers. It would be nice if DBDish::SQLite also supported this. Relevant API: https://www.sqlite.org/c3ref/create_collation.html Example usage: ```perl6 $dbh.create-collation(‘version’,...
Fixes #7.
I’m using `Quat::slerp` to extrapolate rotations, and it works perfectly when the angle is greater than about π / 49.65, in which case the dot product is 0.9994995, suspiciously close...
This method should be called `CreateRasterizerState1`, not `CreateRasterizerState`, as in `d3d11_1.h`. It appears that the same issue exists for the `ID3D11Device1::CreateBlendState1` method. This is especially bad because it shadows the...