change-handle ( object quot -- object )


Vocabulary
accessors

Definition
USING: kernel ;

IN: accessors

: change-handle ( object quot -- object )
over [ [ handle>> ] dip call ] dip swap >>handle ; inline