scala.runtime.VolatileIntRef Maven / Gradle / Ivy
The newest version!
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.runtime;
public final class VolatileIntRef implements java.io.Serializable {
private static final long serialVersionUID = 1488197132022872888L;
volatile public int elem;
public VolatileIntRef(int elem) { this.elem = elem; }
public String toString() { return java.lang.Integer.toString(elem); }
public static VolatileIntRef create(int e) { return new VolatileIntRef(e); }
public static VolatileIntRef zero() { return new VolatileIntRef(0); }
}