class AdLint::Cc1::SignedLongIntTypeId
Public Class Methods
new()
click to toggle source
Calls superclass method
AdLint::Cc1::StandardTypeId::new
# File lib/adlint/cc1/type.rb, line 4506 def initialize super("signed long int") end
Public Instance Methods
==(rhs_id)
click to toggle source
# File lib/adlint/cc1/type.rb, line 4510 def ==(rhs_id) case rhs_id when SignedLongIntTypeId, LongTypeId, LongIntTypeId, SignedLongTypeId true else false end end