Joao Aparicio
Results
13
comments of
Joao Aparicio
Converting this to draft as I'm working on something that will supersede this.
Does anyone wanna re-run CI? Looks like macos got stuck
One observation: The typical Julia behavior is that vcat copies its inputs: ```julia x = [1,2,3] vcat(x) === x # false ``` whereas here ```julia x = ChainedVector([[1,2,3],[4,5]]) vcat(x) ===...