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

org.clulab.wm.eidoscommon.utils.First.scala Maven / Gradle / Ivy

package org.clulab.wm.eidoscommon.utils

class First {
  protected var first = true

  protected def getAndSet(): Boolean = {
    val oldFirst = first

    first = false
    oldFirst
  }

  def isTrue: Boolean = getAndSet()

  def isFalse: Boolean = !getAndSet()
}

object First {

  def apply() = new First
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy