Returns a list that skips the first element of list {0}. If {0} is an empty list an empty list is returned. This function ...

Returns a list that skips the first element of list {0}. If {0} is an empty list an empty list is returned.
This function takes an optional parameter, {1}, to support skipping multiple values as listed below. 
 
  • If a number is specified, up to that many items are skipped.
  • If a condition is specified, the returned list begins with the first element in {0} that meets the criteria. Once an item fails the condition, no further items are considered.
  • If this parameter is null, the default behavior is observed.