method

changed_attribute_by_name

ruby latest stable - Class: SM::AttributeManager

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

changed_attribute_by_name(current_set, new_set)
public

No documentation available.

# File lib/rdoc/markup/simple_markup/inline.rb, line 132
    def changed_attribute_by_name(current_set, new_set)
      current = new = 0
      current_set.each {|name| current |= Attribute.bitmap_for(name) }
      new_set.each {|name| new |= Attribute.bitmap_for(name) }
      change_attribute(current, new)
    end