Sha256: a610cd5f272d8ad06acaec540e6f7453e76733740c80b912fe6fd60fc37646f7
Contents?: true
Size: 344 Bytes
Versions: 4
Compression:
Stored size: 344 Bytes
Contents
module SplitIoClient class EqualToSetMatcher < SetMatcher def self.matcher_type 'EQUAL_TO_SET'.freeze end def initialize(attribute, remote_array) super(attribute, remote_array) end def match?(_matching_key, _bucketing_key, _evaluator, data) local_set(data, @attribute) == @remote_set end end end
Version data entries
4 entries across 4 versions & 1 rubygems