@@ -34,7 +34,7 @@ Add all elements of an array to another array. All values are added at the end o
3434array (right side).
3535
3636It can also be used to append a single element to an array. It is not necessary to wrap
37- it in an array (unless it is an array itself). You may also use [ PUSH()] ( #push ) instead.
37+ it in an array (unless it is an array itself). You may also use [ ` PUSH() ` ] ( #push ) instead.
3838
3939- ** anyArray** (array): array with elements of arbitrary type
4040- ** values** (array\| any): array, whose elements shall be added to ` anyArray `
@@ -211,9 +211,8 @@ FOR v, e, p IN 1..3 OUTBOUND 'places/Toronto' GRAPH 'kShortestPathsGraph'
211211Return the intersection of all arrays specified. The result is an array of values that
212212occur in all arguments.
213213
214- Other set operations are [ UNION()] ( #union ) ,
215- [ MINUS()] ( #minus ) and
216- [ OUTERSECTION()] ( #outersection ) .
214+ Other set operations are [ ` UNION() ` ] ( #union ) , [ ` MINUS() ` ] ( #minus ) and
215+ [ ` OUTERSECTION() ` ] ( #outersection ) .
217216
218217- ** arrays** (array, * repeatable* ): an arbitrary number of arrays as multiple arguments
219218 (at least 2)
@@ -320,7 +319,7 @@ Determine the number of elements in an array.
320319- ** anyArray** (array): array with elements of arbitrary type
321320- returns ** length** (number): the number of array elements in * anyArray* .
322321
323- * LENGTH()* can also determine the [ number of attribute keys] ( document-object.md#length )
322+ ` LENGTH() ` can also determine the [ number of attribute keys] ( document-object.md#length )
324323of an object / document, the [ amount of documents] ( miscellaneous.md#length ) in a
325324collection and the [ character length] ( string.md#length ) of a string.
326325
@@ -382,9 +381,8 @@ RETURN LENGTH( {a:1, b:2, c:3, d:4, e:{f:5,g:6}} )
382381
383382Return the difference of all arrays specified.
384383
385- Other set operations are [ UNION()] ( #union ) ,
386- [ INTERSECTION()] ( #intersection ) and
387- [ OUTERSECTION()] ( #outersection ) .
384+ Other set operations are [ ` UNION() ` ] ( #union ) , [ ` INTERSECTION() ` ] ( #intersection )
385+ and [ ` OUTERSECTION() ` ] ( #outersection ) .
388386
389387- ** arrays** (array, * repeatable* ): an arbitrary number of arrays as multiple
390388 arguments (at least 2)
@@ -447,9 +445,8 @@ RETURN NTH( [ "foo", "bar", "baz" ], -1 )
447445
448446Return the values that occur only once across all arrays specified.
449447
450- Other set operations are [ UNION()] ( #union ) ,
451- [ MINUS()] ( #minus ) and
452- [ INTERSECTION()] ( #intersection ) .
448+ Other set operations are [ ` UNION() ` ] ( #union ) , [ ` MINUS() ` ] ( #minus ) and
449+ [ ` INTERSECTION() ` ] ( #intersection ) .
453450
454451- ** arrays** (array, * repeatable* ): an arbitrary number of arrays as multiple arguments
455452 (at least 2)
@@ -472,9 +469,9 @@ RETURN OUTERSECTION( [ 1, 2, 3 ], [ 2, 3, 4 ], [ 3, 4, 5 ] )
472469
473470Remove the last element of * array* .
474471
475- To append an element (right side), see [ PUSH()] ( #push ) .\
476- To remove the first element, see [ SHIFT()] ( #shift ) .\
477- To remove an element at an arbitrary position, see [ REMOVE_NTH()] ( #remove_nth ) .
472+ To append an element (right side), see [ ` PUSH() ` ] ( #push ) .\
473+ To remove the first element, see [ ` SHIFT() ` ] ( #shift ) .\
474+ To remove an element at an arbitrary position, see [ ` REMOVE_NTH() ` ] ( #remove_nth ) .
478475
479476- ** anyArray** (array): an array with elements of arbitrary type
480477- returns ** newArray** (array): * anyArray* without the last element. If it's already
@@ -517,7 +514,7 @@ the [`IN` operator](../operators.md#comparison-operators), for example,
517514` 3 IN [1, 2, 3] ` instead of ` POSITION([1, 2, 3], 3) ` .
518515
519516To determine if or at which position a string occurs in another string, see the
520- [ CONTAINS() string function] ( string.md#contains ) .
517+ [ ` CONTAINS() ` string function] ( string.md#contains ) .
521518
522519** Examples**
523520
@@ -566,9 +563,9 @@ existence, you may use the `IN` operator instead of calling `POSITION()`, like
566563
567564Append * value* to * anyArray* (right side).
568565
569- To remove the last element, see [ POP()] ( #pop ) .\
570- To prepend a value (left side), see [ UNSHIFT()] ( #unshift ) .\
571- To append multiple elements, see [ APPEND()] ( #append ) .
566+ To remove the last element, see [ ` POP() ` ] ( #pop ) .\
567+ To prepend a value (left side), see [ ` UNSHIFT() ` ] ( #unshift ) .\
568+ To append multiple elements, see [ ` APPEND() ` ] ( #append ) .
572569
573570- ** anyArray** (array): array with elements of arbitrary type
574571- ** value** (any): an element of arbitrary type
@@ -579,7 +576,7 @@ To append multiple elements, see [APPEND()](#append).
579576
580577Note: The * unique* flag only controls if * value* is added if it's already present
581578in * anyArray* . Duplicate elements that already exist in * anyArray* will not be
582- removed. To make an array unique, use the [ UNIQUE()] ( #unique ) function.
579+ removed. To make an array unique, use the [ ` UNIQUE() ` ] ( #unique ) function.
583580
584581** Examples**
585582
@@ -605,8 +602,8 @@ RETURN PUSH([ 1, 2, 2, 3 ], 2, true)
605602
606603Remove the element at * position* from the * anyArray* .
607604
608- To remove the first element, see [ SHIFT()] ( #shift ) .\
609- To remove the last element, see [ POP()] ( #pop ) .
605+ To remove the first element, see [ ` SHIFT() ` ] ( #shift ) .\
606+ To remove the last element, see [ ` POP() ` ] ( #pop ) .
610607
611608- ** anyArray** (array): array with elements of arbitrary type
612609- ** position** (number): the position of the element to remove. Positions start
@@ -785,9 +782,9 @@ RETURN REVERSE ( [2,4,6,8,10] )
785782
786783Remove the first element of * anyArray* .
787784
788- To prepend an element (left side), see [ UNSHIFT()] ( #unshift ) .\
789- To remove the last element, see [ POP()] ( #pop ) .\
790- To remove an element at an arbitrary position, see [ REMOVE_NTH()] ( #remove_nth ) .
785+ To prepend an element (left side), see [ ` UNSHIFT() ` ] ( #unshift ) .\
786+ To remove the last element, see [ ` POP() ` ] ( #pop ) .\
787+ To remove an element at an arbitrary position, see [ ` REMOVE_NTH() ` ] ( #remove_nth ) .
791788
792789- ** anyArray** (array): array with elements with arbitrary type
793790- returns ** newArray** (array): * anyArray* without the left-most element. If * anyArray*
@@ -923,9 +920,8 @@ RETURN SORTED_UNIQUE( [ 8,4,2,10,6,2,8,6,4 ] )
923920
924921Return the union of all arrays specified.
925922
926- Other set operations are [ MINUS()] ( #minus ) ,
927- [ INTERSECTION()] ( #intersection ) and
928- [ OUTERSECTION()] ( #outersection ) .
923+ Other set operations are [ ` MINUS() ` ] ( #minus ) , [ ` INTERSECTION() ` ] ( #intersection )
924+ and [ ` OUTERSECTION() ` ] ( #outersection ) .
929925
930926- ** arrays** (array, * repeatable* ): an arbitrary number of arrays as multiple
931927 arguments (at least 2)
@@ -946,9 +942,8 @@ RETURN UNION(
946942```
947943
948944Note: No duplicates will be removed. In order to remove duplicates, please use
949- either [ UNION_DISTINCT()] ( #union_distinct )
950- or apply [ UNIQUE()] ( #unique ) on the
951- result of * UNION()* :
945+ either [ ` UNION_DISTINCT() ` ] ( #union_distinct ) or apply [ ` UNIQUE() ` ] ( #unique ) on the
946+ result of ` UNION() ` :
952947
953948``` aql
954949---
@@ -1013,8 +1008,8 @@ RETURN UNIQUE( [ 1,2,2,3,3,3,4,4,4,4,5,5,5,5,5 ] )
10131008
10141009Prepend * value* to * anyArray* (left side).
10151010
1016- To remove the first element, see [ SHIFT()] ( #shift ) .\
1017- To append a value (right side), see [ PUSH()] ( #push ) .
1011+ To remove the first element, see [ ` SHIFT() ` ] ( #shift ) .\
1012+ To append a value (right side), see [ ` PUSH() ` ] ( #push ) .
10181013
10191014- ** anyArray** (array): array with elements of arbitrary type
10201015- ** value** (any): an element of arbitrary type
@@ -1025,7 +1020,7 @@ To append a value (right side), see [PUSH()](#push).
10251020
10261021Note: The * unique* flag only controls if * value* is added if it's already present
10271022in * anyArray* . Duplicate elements that already exist in * anyArray* will not be
1028- removed. To make an array unique, use the [ UNIQUE()] ( #unique ) function.
1023+ removed. To make an array unique, use the [ ` UNIQUE() ` ] ( #unique ) function.
10291024
10301025** Examples**
10311026
0 commit comments