|
75 | 75 | """
|
76 | 76 | names(x::Module; all::Bool = false, imported::Bool = false)
|
77 | 77 |
|
78 |
| -Get an array of the names exported by a `Module`, excluding deprecated names. |
79 |
| -If `all` is true, then the list also includes non-exported names defined in the module, |
| 78 | +Get an array of the public names of a `Module`, excluding deprecated names. |
| 79 | +If `all` is true, then the list also includes non-public names defined in the module, |
80 | 80 | deprecated names, and compiler-generated names.
|
81 | 81 | If `imported` is true, then names explicitly imported from other modules
|
82 | 82 | are also included.
|
83 | 83 |
|
84 |
| -As a special case, all names defined in `Main` are considered \"exported\", |
85 |
| -since it is not idiomatic to explicitly export names from `Main`. |
| 84 | +As a special case, all names defined in `Main` are considered \"public\", |
| 85 | +since it is not idiomatic to explicitly mark names from `Main` as public. |
86 | 86 |
|
87 |
| -See also: [`@locals`](@ref Base.@locals), [`@__MODULE__`](@ref). |
| 87 | +See also: [`isexported`](@ref), [`ispublic`](@ref), [`@locals`](@ref Base.@locals), [`@__MODULE__`](@ref). |
88 | 88 | """
|
89 | 89 | names(m::Module; all::Bool = false, imported::Bool = false) =
|
90 | 90 | sort!(unsorted_names(m; all, imported))
|
91 | 91 | unsorted_names(m::Module; all::Bool = false, imported::Bool = false) =
|
92 | 92 | ccall(:jl_module_names, Array{Symbol,1}, (Any, Cint, Cint), m, all, imported)
|
93 | 93 |
|
| 94 | +""" |
| 95 | + isexported(m::Module, s::Symbol) -> Bool |
| 96 | +
|
| 97 | +Returns whether a symbol is exported from a module. |
| 98 | +
|
| 99 | +See also: [`ispublic`](@ref), [`names`](@ref) |
| 100 | +
|
| 101 | +```jldoctest |
| 102 | +julia> module Mod |
| 103 | + export foo |
| 104 | + public bar |
| 105 | + end |
| 106 | +Mod |
| 107 | +
|
| 108 | +julia> Base.isexported(Mod, :foo) |
| 109 | +true |
| 110 | +
|
| 111 | +julia> Base.isexported(Mod, :bar) |
| 112 | +false |
| 113 | +
|
| 114 | +julia> Base.isexported(Mod, :baz) |
| 115 | +false |
| 116 | +``` |
| 117 | +""" |
94 | 118 | isexported(m::Module, s::Symbol) = ccall(:jl_module_exports_p, Cint, (Any, Any), m, s) != 0
|
| 119 | + |
| 120 | +""" |
| 121 | + ispublic(m::Module, s::Symbol) -> Bool |
| 122 | +
|
| 123 | +Returns whether a symbol is marked as public in a module. |
| 124 | +
|
| 125 | +Exported symbols are considered public. |
| 126 | +
|
| 127 | +See also: [`isexported`](@ref), [`names`](@ref) |
| 128 | +
|
| 129 | +```jldoctest |
| 130 | +julia> module Mod |
| 131 | + export foo |
| 132 | + public bar |
| 133 | + end |
| 134 | +Mod |
| 135 | +
|
| 136 | +julia> Base.ispublic(Mod, :foo) |
| 137 | +true |
| 138 | +
|
| 139 | +julia> Base.ispublic(Mod, :bar) |
| 140 | +true |
| 141 | +
|
| 142 | +julia> Base.ispublic(Mod, :baz) |
| 143 | +false |
| 144 | +``` |
| 145 | +""" |
| 146 | +ispublic(m::Module, s::Symbol) = ccall(:jl_module_public_p, Cint, (Any, Any), m, s) != 0 |
| 147 | + |
| 148 | +# TODO: this is vaguely broken because it only works for explicit calls to |
| 149 | +# `Base.deprecate`, not the @deprecated macro: |
95 | 150 | isdeprecated(m::Module, s::Symbol) = ccall(:jl_is_binding_deprecated, Cint, (Any, Any), m, s) != 0
|
| 151 | + |
| 152 | +""" |
| 153 | + isbindingresolved(m::Module, s::Symbol) -> Bool |
| 154 | +
|
| 155 | +Returns whether the binding of a symbol in a module is resolved. |
| 156 | +
|
| 157 | +See also: [`isexported`](@ref), [`ispublic`](@ref), [`isdeprecated`](@ref) |
| 158 | +
|
| 159 | +```jldoctest |
| 160 | +julia> module Mod |
| 161 | + foo() = 17 |
| 162 | + end |
| 163 | +Mod |
| 164 | +
|
| 165 | +julia> Base.isbindingresolved(Mod, :foo) |
| 166 | +true |
| 167 | +
|
| 168 | +julia> Base.isbindingresolved(Mod, :bar) |
| 169 | +false |
| 170 | +``` |
| 171 | +""" |
96 | 172 | isbindingresolved(m::Module, var::Symbol) = ccall(:jl_binding_resolved_p, Cint, (Any, Any), m, var) != 0
|
97 | 173 |
|
98 | 174 | function binding_module(m::Module, s::Symbol)
|
|
0 commit comments