We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00b4683 commit 8278fa7Copy full SHA for 8278fa7
1 file changed
src/rdf4cpp/IRI.hpp
@@ -17,14 +17,17 @@ struct IRI : Node {
17
* it does not exist already.
18
*/
19
IRI(datatypes::registry::DatatypeIDView id, storage::DynNodeStoragePtr node_storage) noexcept;
20
-
+
21
+public:
22
/**
23
* Constructs the corresponding datatype id for this iri. Return value can be safely used to
24
* index the registry and yields the correct result.
25
- explicit operator datatypes::registry::DatatypeIDView() const noexcept;
26
+ operator datatypes::registry::DatatypeIDView() const noexcept;
27
-public:
28
+ /**
29
+ * Constructs an IRI from a node backend handle
30
+ */
31
explicit IRI(storage::identifier::NodeBackendHandle handle) noexcept;
32
33
0 commit comments