\"\" \"\" \"\"
Go backward to Thread(): Duplication
Go up to General
Go forward to ==: Comparison
RISC-Linz logo

=: Assignment

t = s
      Thread<R> t
      Thread<R> s
t = s
      Threadn<R, A1, ..., An> t
      Threadn<R, A1, ..., An> s

Specification: Binds a to the thread b (i.e. to the thread to which b is bound). This overrides any previous binding of a. If b is not bound to any thread, a becomes unbound.

Complexity: O(1).

Note: By implicit conversion, the following assignment is legal:  

Thread<R> t
Threadn<R, A1, ..., An> s
t = s

Author: Wolfgang Schreiner
Last Modification: April 12, 1997