Åsmund Hjulstad
Results
12
issues of
Åsmund Hjulstad
Example: ``` using JSON3, DataFrames rc = 1000 df = DataFrame(a=1:rc, b=rand('a':'z', rc), c=rand(rc)) println(length(JSON3.write(df))) println(length(JSON3.write(eachrow(df)))) ``` prints ``` 27327 27426787 ``` I stumbled upon this trying a naïve approach...
The following code ```julia struct MyType end const D = Dict{String,String} D(m::MyType) = D() e = D(MyType()) print(e) ``` runs fine in Julia, but gets a blue curly line in...