Class: Reportinator::FlattenArrayFunction

Inherits:
ArrayFunction show all
Defined in:
lib/reportinator/functions/array/flatten.rb

Constant Summary collapse

PREFIXES =
[">flatten"]

Instance Method Summary collapse

Methods inherited from ArrayFunction

accepts?, #get, #set_attributes

Methods inherited from Function

parse, #parse_and_execute_value, #parse_value, #prefixes

Methods inherited from Base

config, #config, logger, #logger

Methods included from Helpers

#merge_hash, #merge_hash!, #symbolize_attributes

Instance Method Details

#outputObject



5
6
7
8
9
10
# File 'lib/reportinator/functions/array/flatten.rb', line 5

def output
  array = []
  array.append parse_value(target)
  array.append parse_value(values)
  array.flatten
end