Sha256: 2a9a23a9935f9f3761d992f186ce719deb541fdf7ae7d13feba44acd37356499

Contents?: true

Size: 610 Bytes

Versions: 152

Compression:

Stored size: 610 Bytes

Contents

module ThreadSafe
  module Util
    class PowerOfTwoTuple < VolatileTuple
      def initialize(size)
        raise ArgumentError, "size must be a power of 2 (#{size.inspect} provided)" unless size > 0 && size & (size - 1) == 0
        super(size)
      end

      def hash_to_index(hash)
        (size - 1) & hash
      end

      def volatile_get_by_hash(hash)
        volatile_get(hash_to_index(hash))
      end

      def volatile_set_by_hash(hash, value)
        volatile_set(hash_to_index(hash), value)
      end

      def next_in_size_table
        self.class.new(size << 1)
      end
    end
  end
end

Version data entries

152 entries across 144 versions & 47 rubygems

Version Path
whos_dated_who-0.1.0 vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/power_of_two_tuple.rb
whos_dated_who-0.0.1 vendor/bundle/gems/thread_safe-0.3.4/lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.4 lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.4-java lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.3-java lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.3 lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.2-java lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.2 lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.1 lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.3.1-java lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.2.0-java lib/thread_safe/util/power_of_two_tuple.rb
thread_safe-0.2.0 lib/thread_safe/util/power_of_two_tuple.rb