src/Pure/Concurrent/volatile.scala
author wenzelm
Sun, 05 Sep 2010 19:47:40 +0200
changeset 39133 70d3915c92f0
parent 38840 ec75dc58688b
child 43719 ba1b2c918c32
permissions -rw-r--r--
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;

/*  Title:      Pure/Concurrent/volatile.scala
    Author:     Makarius

Volatile variables.
*/

package isabelle


class Volatile[A](init: A)
{
  @volatile private var state: A = init
  def peek(): A = state
  def change(f: A => A) { state = f(state) }
  def change_yield[B](f: A => (B, A)): B =
  {
    val (result, new_state) = f(state)
    state = new_state
    result
  }
}