Sha256: e027cc57077de249530e08a14da714bbbf9f4d441651baed7b0913b81cb2ba2f
Contents?: true
Size: 268 Bytes
Versions: 78
Compression:
Stored size: 268 Bytes
Contents
module Arrest # A filter is a named predicate to limit a collection to a subset with # certain features class Filter attr_accessor :name attr_accessor :block def initialize name, block = nil @name = name @block = block end end end
Version data entries
78 entries across 78 versions & 1 rubygems