Method: Puppet::Pops::Types::TypeCalculator#iterable

Defined in:
lib/puppet/pops/types/type_calculator.rb

#iterable(t) ⇒ Object

Returns an iterable if the t represents something that can be iterated



188
189
190
191
# File 'lib/puppet/pops/types/type_calculator.rb', line 188

def iterable(t)
  # Create an iterable on the type if possible
  Iterable.on(t)
end