Sha256: c198cdd974e6c9ddc93acaa502b7b8bf422dd00caebab00436a3603af8a4a356
Contents?: true
Size: 355 Bytes
Versions: 3
Compression:
Stored size: 355 Bytes
Contents
module SplitIoClient class ContainsAllMatcher < SetMatcher def self.matcher_type 'CONTAINS_ALL'.freeze end def initialize(attribute, remote_array) super(attribute, remote_array) end def match?(_key, data) return false if @remote_set.empty? @remote_set.subset? local_set(data, @attribute) end end end
Version data entries
3 entries across 3 versions & 1 rubygems