Class: BloomFilter
- Inherits:
-
Object
- Object
- BloomFilter
- Defined in:
- lib/bloomrb.rb
Instance Attribute Summary collapse
-
#bloormrb ⇒ Object
Returns the value of attribute bloormrb.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, bloormrb) ⇒ BloomFilter
constructor
A new instance of BloomFilter.
Constructor Details
#initialize(name, bloormrb) ⇒ BloomFilter
Returns a new instance of BloomFilter.
126 127 128 129 |
# File 'lib/bloomrb.rb', line 126 def initialize(name, bloormrb) self.name = name self.bloormrb = bloormrb end |
Instance Attribute Details
#bloormrb ⇒ Object
Returns the value of attribute bloormrb.
124 125 126 |
# File 'lib/bloomrb.rb', line 124 def bloormrb @bloormrb end |
#name ⇒ Object
Returns the value of attribute name.
124 125 126 |
# File 'lib/bloomrb.rb', line 124 def name @name end |