class Puppet::Pops::Types::HashIterator
Special iterator used when iterating over hashes. Returns `true` for `#hash_style?` so that it is possible to differentiate between two element arrays and key => value associations
Public Instance Methods
hash_style?()
click to toggle source
# File lib/puppet/pops/types/iterable.rb 273 def hash_style? 274 true 275 end