struct.rb

Path: lib/raindrops/struct.rb  (CVS)
Last Update: Mon Jan 23 14:19:30 +0000 2012

This is a wrapper around Raindrops objects much like the core Ruby \Struct can be seen as a wrapper around the core \Array class. It‘s usage is similar to the core \Struct class, except its fields may only be used to house unsigned long integers.

  class Foo < Raindrops::Struct.new(:readers, :writers)
  end

  foo = Foo.new 0, 0

  foo.incr_writers    -> 1
  foo.incr_readers    -> 1

[Validate]