@@ -170,15 +170,15 @@ type Expression interface {
170170 //
171171 // The parameter 'n' can be an integer constant or an [Expression] that evaluates to an integer.
172172 ArrayLastN (n any ) Expression
173- // ArraySlice creates an expression that returns a slice of an array starting from the specified offset.
173+ // ArraySliceToEnd creates an expression that returns a slice of an array starting from the specified offset.
174174 //
175175 // The parameter 'offset' is the 0-based index of the first element to include. It can be an int, int32, int64 or [Expression].
176- ArraySlice (offset any ) Expression
177- // ArraySliceToEnd creates an expression that returns a slice of an array starting from the specified offset with a given length.
176+ ArraySliceToEnd (offset any ) Expression
177+ // ArraySlice creates an expression that returns a slice of an array starting from the specified offset with a given length.
178178 //
179179 // The parameter 'offset' is the 0-based index of the first element to include. It can be an int, int32, int64 or [Expression].
180180 // The parameter 'length' is the number of elements to include. It can be an int, int32, int64 or [Expression].
181- ArraySliceToEnd (offset , length any ) Expression
181+ ArraySlice (offset , length any ) Expression
182182 // ArrayIndexOf creates an expression that returns the first index of a search value in an array.
183183 //
184184 // The parameter 'search' is the value to search for. It can be a constant or [Expression].
@@ -577,18 +577,18 @@ func (b *baseExpression) ArrayReverse() Expression { return Arra
577577func (b * baseExpression ) ArrayConcat (otherArrays ... any ) Expression {
578578 return ArrayConcat (b , otherArrays ... )
579579}
580- func (b * baseExpression ) ArraySum () Expression { return ArraySum (b ) }
581- func (b * baseExpression ) ArrayMaximum () Expression { return ArrayMaximum (b ) }
582- func (b * baseExpression ) ArrayMaximumN (n any ) Expression { return ArrayMaximumN (b , n ) }
583- func (b * baseExpression ) ArrayMinimum () Expression { return ArrayMinimum (b ) }
584- func (b * baseExpression ) ArrayMinimumN (n any ) Expression { return ArrayMinimumN (b , n ) }
585- func (b * baseExpression ) ArrayFirst () Expression { return ArrayFirst (b ) }
586- func (b * baseExpression ) ArrayFirstN (n any ) Expression { return ArrayFirstN (b , n ) }
587- func (b * baseExpression ) ArrayLast () Expression { return ArrayLast (b ) }
588- func (b * baseExpression ) ArrayLastN (n any ) Expression { return ArrayLastN (b , n ) }
589- func (b * baseExpression ) ArraySlice (offset any ) Expression { return ArraySlice (b , offset ) }
590- func (b * baseExpression ) ArraySliceToEnd (offset , length any ) Expression {
591- return ArraySliceToEnd (b , offset , length )
580+ func (b * baseExpression ) ArraySum () Expression { return ArraySum (b ) }
581+ func (b * baseExpression ) ArrayMaximum () Expression { return ArrayMaximum (b ) }
582+ func (b * baseExpression ) ArrayMaximumN (n any ) Expression { return ArrayMaximumN (b , n ) }
583+ func (b * baseExpression ) ArrayMinimum () Expression { return ArrayMinimum (b ) }
584+ func (b * baseExpression ) ArrayMinimumN (n any ) Expression { return ArrayMinimumN (b , n ) }
585+ func (b * baseExpression ) ArrayFirst () Expression { return ArrayFirst (b ) }
586+ func (b * baseExpression ) ArrayFirstN (n any ) Expression { return ArrayFirstN (b , n ) }
587+ func (b * baseExpression ) ArrayLast () Expression { return ArrayLast (b ) }
588+ func (b * baseExpression ) ArrayLastN (n any ) Expression { return ArrayLastN (b , n ) }
589+ func (b * baseExpression ) ArraySliceToEnd (offset any ) Expression { return ArraySliceToEnd (b , offset ) }
590+ func (b * baseExpression ) ArraySlice (offset , length any ) Expression {
591+ return ArraySlice (b , offset , length )
592592}
593593func (b * baseExpression ) ArrayIndexOf (search any ) Expression {
594594 return ArrayIndexOf (b , search )
0 commit comments