filter-uncommon ( seq -- seq' ) (original) (raw)

filter-uncommon ( seq -- seq' )

Vocabulary
scryfall

Inputs

seq an object

Outputs

seq' an object

Definition

USING: assocs kernel sequences ;

IN: scryfall

: filter-uncommon ( seq -- seq' )
[ "rarity" of "uncommon" = ] filter ;