Method: ContentFS::Database#nested

Defined in:
lib/contentfs/database.rb

#nestedObject



97
98
99
100
101
102
103
# File 'lib/contentfs/database.rb', line 97

def nested
  return to_enum(:nested) unless block_given?

  @nested.each_value do |value|
    yield value
  end
end