class Puppet::Functions::PuppetFunction
Base class for all functions implemented in the puppet language
Public Class Methods
init_dispatch(a_closure)
click to toggle source
# File lib/puppet/functions.rb 383 def self.init_dispatch(a_closure) 384 # A closure is compatible with a dispatcher - they are both callable signatures 385 dispatcher.add(a_closure) 386 end