summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
Diffstat (limited to 'sord')
-rw-r--r--sord/sord.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/sord/sord.h b/sord/sord.h
index d464358..feca90b 100644
--- a/sord/sord.h
+++ b/sord/sord.h
@@ -356,30 +356,13 @@ sord_add(SordModel model, const SordQuad quad);
/**
Remove a quad from the store.
- This function invalidates all iterators to @a sord (use sord_remove_iter
- if this is undesirable)
+ Note that is it illegal to remove while iterator over @a model.
*/
SORD_API
void
sord_remove(SordModel model, const SordQuad quad);
/**
- Remove a quad from the store by iterator.
-
- @a iter will be incremented to point at the next value.
-*/
-SORD_API
-void
-sord_remove_iter(SordModel model, SordIter iter);
-
-/**
- Remove a graph from the store.
-*/
-SORD_API
-void
-sord_remove_graph(SordModel model, SordNode graph);
-
-/**
@}
@name Iteration
@{