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
43 def ===(v)
44   !v.nil?
45 end