??nth ( n seq -- elt/f ? )


Vocabulary
sequences.extras

Inputs
nan integer
seqa sequence


Outputs
elt/fan object or f
?a boolean


Word description
A forgiving version of nth. If the index is out of bounds, or if the sequence is f, simply outputs f. Also outputs a boolean to distinguish between the sequence containing an f or an out of bounds index.

Definition