class Maglev::Section::Block::Store
def each(&block)
def each(&block) array.each(&block) end
def find(type)
def find(type) array.find { |block| block.type == type } end
def initialize(blocks, section:)
def initialize(blocks, section:) @array = ::Maglev::Section::Block.build_many(blocks, section: section) end