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/array_dataset.rb, line 19
def self.included(klass)
  klass.class_eval do
    extend Initializer
    include DataProxy

    param :data
  end
end