class Puppet::Util::MultiMatch::MatchNotNil

Matches any value that is not nil using the === operator.

Public Instance Methods

===(v) click to toggle source
   # File lib/puppet/util/multi_match.rb
42 def ===(v)
43   !v.nil?
44 end