Arr
public struct Arr: Expr, AsJson, CustomStringConvertible
Represents an array in FaunaDB where its elements can be a primitive value or an expression to be evaluated.
For example:
// Using a primitive value
Arr(1, "Two", 3)
// Using a call to the `Time` function
Arr(Time("now"))