first3-unsafe ( seq -- first second third )


Vocabulary
sequences.private

Inputs and outputs
seqa sequence
firstthe first element
secondthe second element
thirdthe third element


Generic word contract
Unsafe variant of first3 that does not perform bounds checks.

Definition
USING: kernel ;

IN: sequences.private

: first3-unsafe ( seq -- first second third )
[ first2-unsafe ] [ third-unsafe ] bi ; inline