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

gapt.utils.Counter.scala Maven / Gradle / Ivy

The newest version!
package gapt.utils

class Counter {
  private var state = 0
  def nextId(): Int = {
    state = state + 1
    state
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy