Drop
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
Drop( num, array )
drop( num, array )
Drop( num, array )
Drop( num, array )
Drop( num, array )
Drop( num, array )
Description
The Drop
function returns a new array of the same type that
contains the remaining elements, after num
have been removed from the
head of the array. If num
is zero or negative, all elements of
the array are returned unmodified.
When applied to a Page, the returned page’s before
cursor is
adjusted to exclude the dropped elements. As special cases:
-
If
num
is negative,before
does not change. -
Otherwise if all elements from the original page were dropped (including the case where the page was already empty),
before
is set to same value as the original page’safter
.