(find-tail predicate list) -> value
Returns the first value in list that returns true from the predicate, and all values in the list that follow it, in a list. If not found, returns #f.
Example:
>>(find-tail integer? '('one "two" 3 4 5 "six")) :: (3 4 5 "six")