module AtomicCounter

Constants

VERSION

Public Class Methods

new(start = 0) click to toggle source
# File lib/atomic_counter.rb, line 5
def self.new(start = 0)
  AtomicCounter::Counter.new(start)
end