class VagrantCloud::Data::NilClass
Custom nil class which is used for signifying a nil value that was not set by the user. This makes it easy to filter out values which are unset vs. those that are set to nil.
Public Instance Methods
Source
# File lib/vagrant_cloud/data.rb, line 12 def ==(v); v.nil? || super(v); end
Calls superclass method
Source
# File lib/vagrant_cloud/data.rb, line 14 def equal?(v); v.nil? || super(v); end
Calls superclass method