each-selection ( ... seq n quot: ( ... elt -- ... ) -- ... ) (original) (raw)

each-selection ( ... seq n quot: ( ... elt -- ... ) -- ... )

Vocabulary
math.combinatorics

Inputs

seq an object
n an object
quot a quotation with stack effect ( ... elt -- ... )

Outputs
None

Definition

USING: math.combinatorics.private sequences ;

IN: math.combinatorics

: each-selection
( ... seq n quot: ( ... elt -- ... ) -- ... )
selections-quot each ; inline