All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reactify.standard.StandardVal.scala Maven / Gradle / Ivy

The newest version!
package reactify.standard

import reactify.{State, Val}

class StandardVal[T](f: => T, override val name: Option[String]) extends Val[T] {
  override val state: State[T] = new State[T](this, 1, () => f)

  state.update(None)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy