filter-combinations ( ... seq k quot: ( ... elt -- ... ? ) -- ... newseq )


Vocabulary
math.combinatorics

Definition
USING: kernel sequences ;

IN: math.combinatorics

: filter-combinations
( ... seq k quot: ( ... elt -- ... ? ) -- ... newseq )
selector [ each-combination ] dip ; inline