Method: BitAnalytics#bit_op_and
- Defined in:
- lib/bit_analytics.rb
#bit_op_and(event, *events) ⇒ Object
— BitOps —
91 92 93 94 95 96 |
# File 'lib/bit_analytics.rb', line 91 def bit_op_and(event, *events) bit_operation = BitOperation.new('AND', event, *events) bit_operation.redis = @redis bit_operation.execute bit_operation end |