Cédric Belmant
Cédric Belmant
Having trailing zeros in floats is mostly a matter of style, and would IMHO fit very well as a parameter to be configured in a `.JuliaFormatter.toml`. If there is any...
Single-line `if` expressions currently get split into multiple lines. Would it be possible to keep the style to preserve the first version below? Before formatting: ```julia function f() if rand()...
Originating from #98, it was discussed that we probably should parametrize the library according to a particular metric. Even if not all algorithms may work with arbitrary metrics, it would...
I noticed the following [docstring](https://github.com/JuliaCollections/AbstractTrees.jl/blob/ab3d4786835e71a8d7b8259480dc9569869a8f56/src/traits.jl#L162-L171) was incomplete: > OPTIONAL: Type inference is used to attempt to
I have a use case which requires a bidirectional mapping (similar to [Bijections](https://github.com/scheinerman/Bijections.jl)), and wondered what would be preferred between either contributing such an implementation to Dictionaries or creating a...
Currently, `Base.Dict` allows ```julia julia> convert(Dict{Int,Int}, Dict()) Dict{Int64, Int64}() ``` but this fails with `Dictionary`: ```julia julia> convert(Dictionary{Int,Int}, Dictionary()) ERROR: MethodError: Cannot `convert` an object of type Dictionary{Any,Any} to an...
Currently, broadcasting over e.g. a `Vector{
Adding ANSI color support to `@example` blocks in #1441 was a great addition, and I'm wondering if we could have colorful reference documentation too? Say I have a docstring with...
In nightly, loading FileIO results in lots of invalidations related to StyledStrings, see the following case: ```julia-repl (@v1.12) pkg> activate --temp Activating new project at `/tmp/jl_uxMxkY` (jl_uxMxkY) pkg> add FileIO...
This allows Revise to work with https://github.com/timholy/CodeTracking.jl/pull/140. Requires https://github.com/JuliaDebug/JuliaInterpreter.jl/pull/680. This change is breaking, so we may either: - Tag a new breaking release. - Keep backwards compatibility by supporting a...