class Sass::Value::Mixin

def ==(other)

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

def assert_mixin(_name = nil)

Returns:
  • (Mixin) -
def assert_mixin(_name = nil)
  self
end

def hash

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