Variable rdf4cpp::bnode_mngt::NodeScopeManager¶
Defined in File NodeScopeManager.hpp
Variable Documentation¶
- template<typename M> concept rdf4cpp::bnode_mngt::NodeScopeManager = requires(M &m, std::string_view scope_name) {{ m.scope(scope_name) } ->NodeScope;}
Manages a set of scopes, by name. I.e. you call subscope with a given name, if there is no scope referring to that name a new one is created. Otherwise you get the previously created scope.
You can think of this as a map<std::string, NodeScope>.