diff --git a/modules/ROOT/images/graph_list_functions.svg b/modules/ROOT/images/graph_list_functions.svg new file mode 100644 index 000000000..88b6c8672 --- /dev/null +++ b/modules/ROOT/images/graph_list_functions.svg @@ -0,0 +1,91 @@ + + + + + + +L + + + +N0 + +Person, Developer + +name = 'Alice' +age = 38 +eyes = 'brown' + + + +N2 + +name = 'Charlie' +age = 53 +eyes = 'green' + + + +N0->N2 + + +KNOWS + + + +N1 + +name = 'Bob' +age = 25 +eyes = 'blue' + + + +N0->N1 + + +KNOWS + + + +N3 + +name = 'Daniel' +age = 54 +eyes = 'brown' + + + +N2->N3 + + +KNOWS + + + +N1->N3 + + +KNOWS + + + +N4 + +eyes = 'blue' +array = ['one', 'two', 'three'] +name = 'Eskil' +age = 41 + + + +N1->N4 + + +MARRIED + + + diff --git a/modules/ROOT/pages/functions/list.adoc b/modules/ROOT/pages/functions/list.adoc index ee478666a..faab3201f 100644 --- a/modules/ROOT/pages/functions/list.adoc +++ b/modules/ROOT/pages/functions/list.adoc @@ -15,52 +15,7 @@ Functions: * xref:functions/list.adoc#functions-reverse-list[reverse()] * xref:functions/list.adoc#functions-tail[tail()] -.Graph -["dot", "List functions-1.svg", "neoviz", ""] ----- - N0 [ - label = "{Person, Developer|name = \'Alice\'\leyes = \'brown\'\lage = 38\l}" - ] - N0 -> N2 [ - color = "#2e3436" - fontcolor = "#2e3436" - label = "KNOWS\n" - ] - N0 -> N1 [ - color = "#2e3436" - fontcolor = "#2e3436" - label = "KNOWS\n" - ] - N1 [ - label = "name = \'Bob\'\leyes = \'blue\'\lage = 25\l" - ] - N1 -> N3 [ - color = "#2e3436" - fontcolor = "#2e3436" - label = "KNOWS\n" - ] - N1 -> N4 [ - color = "#4e9a06" - fontcolor = "#4e9a06" - label = "MARRIED\n" - ] - N2 [ - label = "name = \'Charlie\'\leyes = \'green\'\lage = 53\l" - ] - N2 -> N3 [ - color = "#2e3436" - fontcolor = "#2e3436" - label = "KNOWS\n" - ] - N3 [ - label = "name = \'Daniel\'\leyes = \'brown\'\lage = 54\l" - ] - N4 [ - label = "array = \[\'one\', \'two\', \'three\'\]\lname = \'Eskil\'\leyes = \'blue\'\lage = 41\l" - ] - ----- - +image:graph_list_functions.svg[] [[functions-keys]] == keys()