Loading TOC...

fn.data

fn.data(
   arg as Sequence
) as Sequence

Summary

Takes a sequence of items and returns a sequence of atomic values.

The fn:data function returns the sequence of atomic values produced by applying the following rules to each item in $arg:

Parameters
arg The items whose typed values are to be returned.

Example

var x = fn.head(xdmp.unquote('<hello>hello <goodbye>goodbye</goodbye></hello>')
    ).xpath("/hello");
fn.data(x);

=> hello goodbye

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.