Vadim

Results 14 issues of Vadim

This is sometimes useful - e.g. recently ran into something which produced a compilation warning but didn't have any effect on the functionality. Not sure if it's worth including as...

I'm writing Julia using the [Julia-vim](https://github.com/JuliaEditorSupport/julia-vim) plugin. When I also have Vim-Sexp loaded, any parenthesis or bracket (`([{`) inserted in a Julia (`*.jl`) file is autoindented by one space -...

Are immutable structs supposed to work with FlatBuffers? I couldn't make the serialization/deserialization work both with and without the `@STRUCT` annotation. I've added the following code under the `TestInt8I` struct...

Julia 0.6.2, Lazy 0.12 ```julia julia> struct Ints x :: Int end julia> z = Ints(1) Ints(1) julia> Lazy.@switch z.x begin 1; println("one") end ERROR: TypeError: non-boolean (Int64) used in...