Method: EasyType::Group#include_property?

Defined in:
lib/easy_type/group.rb

#include_property?(parameter_or_property) ⇒ Boolean

Returns true if the paremeter or property is included in any existing group

Parameters:

  • parameter_or_property (Puppet::Parameter)

    this is the specified parameter.

Returns:

  • (Boolean)


84
85
86
# File 'lib/easy_type/group.rb', line 84

def include_property?(parameter_or_property)
  @content.values.flatten.include?(parameter_or_property)
end