module ROM::ArrayDataset

A helper module that adds data-proxy behavior to an array-like object

@see EnumerableDataset

@api public

Public Class Methods

included(klass) click to toggle source

Extends the class with data-proxy behavior

@api private

# File lib/rom/support/array_dataset.rb, line 16
def self.included(klass)
  klass.class_eval do
    include Options
    include DataProxy
  end
end