class Sass::Value::Null

def self.new

def self.new
  NULL
end

def !

Returns:
  • (Boolean) -
def !
  Boolean::TRUE
end

def ==(other)

Returns:
  • (::Boolean) -
def ==(other)
  other.is_a?(Sass::Value::Null)
end

def hash

Returns:
  • (Integer) -
def hash
  @hash ||= value.hash
end

def initialize

def initialize
  @value = nil
end

def to_bool

Returns:
  • (::Boolean) -
def to_bool
  false
end