class Attr::Gather::Filters::Result

Result of a filter

@!attribute [r] value

@return [Hash] the filtered hash

@!attribute [r] filterings

@return [Array<Attr::Gather::Filtering>] info about filtered items

Attributes

filterings[R]
value[R]

Public Class Methods

new(value, filterings) click to toggle source
# File lib/attr/gather/filters/result.rb, line 16
def initialize(value, filterings)
  @value = value
  @filterings = filterings
end