PatrickHaecker

Results 31 issues of PatrickHaecker

The `do` syntax should support type variables, so that something like ``` myfunction(bound_parameter) do free_parameter::T where T # T should be available here end ``` or at least ``` myfunction(bound_parameter)...

status:triage
kind:feature

This is useful if no header files can or should be used, e.g. if you want to use the library from a language which cannot directly use header files. Fixes...

If you use a language like C or C++ which uses the header files, rclc can obviously be used. However, for other programming languages which are able to use libraries,...

I am just learning about these things, but if I understand it correctly, `AllocCheck.jl` [depends on `LLVM.jl` 6.x](https://github.com/JuliaLang/AllocCheck.jl/blob/main/Project.toml) ([see also](https://pkgdocs.julialang.org/v1/compatibility/#Version-specifier-format)). `AllocCheck.jl` also [depends on `GPUCompiler.jl`](https://github.com/JuliaLang/AllocCheck.jl/blob/main/Project.toml). However, `GPUCompiler.jl` depends on `LLVM.jl...

I get that using BitIntegers.jl is useful if you want to do residue class calculations. However, I hoped that BitIntegers.jl could also be used to save some memory, but I...

help wanted
doc

Currently calling `@define_integers` defines `Base.widen` to be `BigInt` if the type with twice the bits does not exist yet. This is unfortunate in my opinion: ``` using BitIntegers @define_integers 24...

bug

Creating an app using Julia 1.11-rc1 (also the manifest files pointing to 1.11-rc1) fails with the error ``` error: too few arguments to function ‘jl_get_binding_wr’ 109 | jl_binding_t *bp =...

bug

Julia code is typically structured in functions. If I haven't missed anything, we have the following code execution possibilities in the REPL: - active File in REPL - Code Cell...

Either I have totally misunderstood the documentation or printing of `Fixed` numbers is wrong. ``` julia> Fixed{Int8,2}(0.25) 0.2Q5f2 julia> Fixed{Int8,3}(0.125) 0.12Q4f3 ``` Looking into `FixedPointNumbers.jl/show` leads to ``` digits=ceil(Int, f...

Instead of the regular space `' '` (U+0020) between the numeric value and the unit, a [narrow no-break space should be used](https://en.wikipedia.org/wiki/Non-breaking_space#Width_variation) `' '` (U+202F). This obviously does not always...