Range¶
-
const SerdStatement *
serd_range_front
(const SerdRange *range)¶ Return the first statement in
range
, or NULL ifrange
is empty.
-
bool
serd_range_equals
(const SerdRange *lhs, const SerdRange *rhs)¶ Return true iff
lhs
is equal torhs
-
bool
serd_range_next
(SerdRange *range)¶ Increment the start of
range
to point to the next statement.
-
SerdStatus
serd_write_range
(const SerdRange *range, const SerdSink *sink, SerdSerialisationFlags flags)¶ Write
range
tosink
The serialisation style can be controlled with
flags
. The default is to write statements in an order suited for pretty-printing with Turtle or TriG with as many objects written inline as possible. IfSERD_NO_INLINE_OBJECTS
is given, a simple sorted stream is written instead, which is significantly faster since no searching is required, but can result in ugly output for Turtle or Trig.