model-activated ( model -- )
Models > Implementing models
Next:set-model ( value model -- )


Vocabulary
models

Inputs and outputs
modela model


Generic word contract
Called after a model has been activated.

See also
activate-model, deactivate-model

Definition
IN: models

GENERIC: model-activated ( model -- )


Methods
USING: accessors kernel models models.arrow ;

M: arrow model-activated [ model>> ] keep model-changed ;


USING: accessors kernel models models.conditional ;

M: conditional model-activated [ model>> ] keep model-changed ;


USING: models models.delay ;

M: delay model-activated update-delay-model ;


USING: kernel models models.mapping ;

M: mapping model-activated dup model-changed ;


USING: kernel models ;

M: model model-activated drop ;


USING: kernel models models.product ;

M: product model-activated dup model-changed ;