AssignmentSequence

Constructor

AssignmentSequence <id> (<0|1>) { list of assignment }

Action

Runs the list of assignments in the specified order. The boolean value specifies a "lazy loading". When set to 1, this means that the assignment sequence is not done on tree traversal but only on explicit activation through a binding

Predefined children

None

Example


use core
use base

_main_
Component root {
  Clock cl (500)
  TextPrinter log
  TextPrinter another_log
  AssignmentSequence log_tick (1) {
    "tic" =: log.input
    "tac" =: another_log.input
  }
  cl.tick->log_tick
}