We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47800b8 commit 2695012Copy full SHA for 2695012
src/names.jl
@@ -63,9 +63,9 @@ end
63
# getproperty: it's useful to say for `(i,t) in enumerate(A.time)` etc.
64
# This will make saying ".data" slow (by 30ns), fixed in NamedDims.jl#78
65
66
-Base.propertynames(A::NdaKa{L}, private=false) where {L} =
+Base.propertynames(A::NdaKa{L}, private::Bool=false) where {L} =
67
private ? (L..., fieldnames(typeof(A))...) : L
68
-Base.propertynames(A::KaNda{L}, private=false) where {L} =
+Base.propertynames(A::KaNda{L}, private::Bool=false) where {L} =
69
70
71
Base.getproperty(A::NdaKa{L}, s::Symbol) where {L} =
0 commit comments