- Operator | Description
- ---------|-------------
- <code>listany || listany</code> | Concatenate the two lists.
- <code>listany || listelementany</code> | Append the element to the list.
- <code>listelementany || listany</code> | Prepend the element to the list.
- <code>listany @> listany</code> | Check if the first list contains all elements of the second list.
- <code>listany <@ listany</code> | Check if all elements of the first list are contained in the second list.
|