Since this package overloads Base.length, without specifying ml::MultiLevel as the argument type, you get weird LoadErrors if you have this package loaded and you call length on a object which has no method defined. E.g. length(nothing) results in
ERROR: LoadError: type Nothing has no field levels
Since this package overloads
Base.length
, without specifyingml::MultiLevel
as the argument type, you get weirdLoadError
s if you have this package loaded and you calllength
on a object which has no method defined. E.g.length(nothing)
results in