File: seq-functions.texi

package info (click to toggle)
libgnurdf 0.3.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,108 kB
  • ctags: 233
  • sloc: sh: 8,929; ansic: 1,222; makefile: 280
file content (48 lines) | stat: -rw-r--r-- 952 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@node Sequences, Alternates, Bags, Container Functions
@chapter Sequence Containers

@itemize @bullet
@item
Function: RdfSeq *rdfCreateSeq(RdfElement *parent, const char *property,
RdfNamespace *ns)
@findex rdfCreateSeq

Creates and returns a new sequence container.

@itemize @minus
@item
parent: The parent  which will hold the sequence container.

@item
property: The name of the sequence container's property.

@item
ns: The sequence container's namespace.
@end itemize

@item
Function: RdfElement *rdfSeqAddValue(RdfSeq *seq, const char *property,
RdfNamespace *ns, const char *value, RdfElement *element)
@findex rdfSeqAddValue

Adds and returns a property to the sequence container.

@itemize @minus
@item
seq: The sequence container.

@item
property: The property's name.

@item
ns: The property's namespace.

@item
value: The value of the property, if not NULL.

@item
element: The property's element, if not NULL.
@end itemize

@end itemize