fn:tail( $seq as item()* ) as item()*
Returns all but the first item in a sequence. For more details, see XPath 3.0 Functions and Operators.
fn:tail((1,2,3)) => (2, 3)