Method: BOBrb::ChildArray#cl

Defined in:
lib/BOBrb/child_array.rb

#cl(object_class) ⇒ Object



33
34
35
36
37
38
39
# File 'lib/BOBrb/child_array.rb', line 33

def cl (object_class)
	@dataset.each_with_index do |item, i|
		BOBrb::Element.data = item
		@bobs[i].cl(object_class) if @bobs[i]
	end
	return self
end