class Cmpi::CMPIEnumeration

CMPIEnumeration

Public Instance Methods

each() { |next_element| ... } click to toggle source
# File ruby/cmpi.rb, line 448
def each
  while has_next
    yield next_element
  end
end