Class: Nocode::Steps::Dataset::Range
- Inherits:
-
Nocode::Step
- Object
- Nocode::Step
- Nocode::Steps::Dataset::Range
- Defined in:
- lib/nocode/steps/dataset/range.rb
Overview
Slice a dataset and keep on the entries between start_index and end_index, inclusively. If start_index is not provided then it defaults to 0. If end_index is not provided then it defaults to the end of the dataset.
Constant Summary
Constants included from Util::Optionable
Util::Optionable::OPTION_PREFIX
Instance Attribute Summary
Attributes inherited from Nocode::Step
#context, #name, #options, #type
Instance Method Summary collapse
Methods inherited from Nocode::Step
Methods included from Util::Optionable
included, #method_missing, #options, #respond_to_missing?
Methods included from Util::Arrayable
Constructor Details
This class inherits a constructor from Nocode::Step
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Nocode::Util::Optionable
Instance Method Details
#perform ⇒ Object
14 15 16 17 18 |
# File 'lib/nocode/steps/dataset/range.rb', line 14 def perform registers[register_option] = array(registers[register_option]) registers[register_option] = registers[register_option][start_index..end_index] end |