Li Xiucheng
Results
2
issues of
Li Xiucheng
Julia version is 0.6 in macOS 10.12.4, the error appears like following but not sure whether it comes from `JLD` or `DataStructures` ``` julia> using DataStructures, JLD julia> a =...
fixed in JLD2
In the current implementation the returned type of `rest` is `LinkedList` while `drop` returns `LazyList`, ``` > typeof(Lazy.rest(list(1,2,3))) Lazy.LinkedList > typeof(Lazy.drop(1, list(1,2,3))) Lazy.LazyList ``` This not only seems inconsistent but...