Go to the first, previous, next, last section, table of contents.


storeValue

Function: storeValue { event value -> }
file: 01-C-event.t
package: muf
status: alpha

The storeValue function invokes the most recent storeValue restart, which normally results in continuation of the computation that was just interrupted with the offending variable set to the given value.

NOTE: This function is included because it is specified by the CommonLisp standard. Muq does not currently ever establish an storeValue restart, hence this function is of little if any use at the moment.

The storeValue function is currently implemented as:

: storeValue { $ $ -> } -> value -> event

    'storeValue event findRestart -> restart
    restart if [ value | restart ]invokeRestart fi
;


Go to the first, previous, next, last section, table of contents.