find-id3-frame ( id3 name -- obj/f )
ID3 tags
Prev:year ( id3 -- string/f )


Vocabulary
id3

Inputs and outputs
id3an id3
namea string
obj/fobject or f


Word description
Returns the data slot of the ID3 frame with the given name, or f.

Definition
USING: accessors assocs kernel ;

IN: id3

: find-id3-frame ( id3 name -- obj/f )
swap frames>> at* [ data>> ] when ;