Sha256: 598301e1f819fcca1f8426acd1a88382db2c6b1d305e1fb4271d814c7d256089
Contents?: true
Size: 394 Bytes
Versions: 85
Compression:
Stored size: 394 Bytes
Contents
class RDoc::Markup AttrChanger = Struct.new :turn_on, :turn_off # :nodoc: end ## # An AttrChanger records a change in attributes. It contains a bitmap of the # attributes to turn on, and a bitmap of those to turn off. class RDoc::Markup::AttrChanger def to_s # :nodoc: "Attr: +#{turn_on}/-#{turn_off}" end def inspect # :nodoc: '+%d/-%d' % [turn_on, turn_off] end end
Version data entries
85 entries across 55 versions & 6 rubygems