class Concurrent::TVar

def value

Get the value of a `TVar`.
def value
  Concurrent::atomically do
    Transaction::current.read(self)
  end
end