class AdLint::Cc1::SignedTypeId
Public Class Methods
new()
click to toggle source
Calls superclass method
AdLint::Cc1::StandardTypeId::new
# File lib/adlint/cc1/type.rb, line 4154 def initialize super("signed") end
Public Instance Methods
==(rhs_id)
click to toggle source
# File lib/adlint/cc1/type.rb, line 4158 def ==(rhs_id) case rhs_id when SignedTypeId, IntTypeId, SignedIntTypeId true else false end end