chore(library/scoped_ext): add comment
This commit is contained in:
parent
6bbe72190d
commit
fe020b49c1
1 changed files with 8 additions and 0 deletions
|
@ -55,6 +55,14 @@ bool is_metaclass(name const & n);
|
|||
environment add_namespace(environment const & env, name const & ns);
|
||||
|
||||
name const & get_namespace(environment const & env);
|
||||
/** \brief Return the current stack of namespaces.
|
||||
Example: at
|
||||
namespace foo
|
||||
namespace bla
|
||||
namespace boo
|
||||
- It returns [foo.bla.boo, foo.bla, foo]
|
||||
|
||||
\remark This is *not* the set of opened namespaces. */
|
||||
list<name> const & get_namespaces(environment const & env);
|
||||
bool in_section(environment const & env);
|
||||
|
||||
|
|
Loading…
Reference in a new issue