5.13.2 Range

enum SerdDescribeFlag

Flags that control the style of a model serialisation.

enumerator SERD_NO_TYPE_FIRST

Disable writing rdf:type (“a”) first.

typedef uint32_t SerdDescribeFlags

Bitwise OR of SerdDescribeFlag values.

SerdStatus serd_describe_range(const SerdCursor *range, const SerdSink *sink, SerdDescribeFlags flags)

Describe a range of statements by writing to a sink.

This will consume the given cursor, and emit at least every statement it visits. More statements from the model may be written in order to describe anonymous blank nodes that are associated with a subject in the range.

The default is to write statements in an order suited for pretty-printing with Turtle or TriG with as many anonymous nodes as possible. If SERD_NO_INLINE_OBJECTS is given, a simple sorted stream is written instead, which is faster since no searching is required, but can result in ugly output for Turtle or Trig.