class Sass::Value::Null
@see sass-lang.com/documentation/js-api/variables/sassnull/
Sass’s null type.
def self.new
def self.new NULL end
def !
-
(Boolean)
-
def ! Boolean::TRUE end
def ==(other)
-
(::Boolean)
-
def ==(other) other.is_a?(Sass::Value::Null) end
def hash
-
(Integer)
-
def hash @hash ||= value.hash end
def initialize
def initialize @value = nil end
def to_bool
-
(::Boolean)
-
def to_bool false end