Go backward to Thread(): Duplication
Go up to General
Go forward to ==: Comparison

=: Assignment

t = s
      Thread<R> t
      Thread<R> s
t = s
      Threadn<R, A_1, ..., A_n> t
      Threadn<R, A_1, ..., A_n> 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, A_1, ..., A_n> s
t = s

Wolfgang.Schreiner@risc.uni-linz.ac.at
Id: main.tex,v 1.10 1996/04/04 11:45:47 schreine Exp

Prev Up Next