class AdLint::Cc1::SignedLongLongTypeId
Public Class Methods
new()
click to toggle source
Calls superclass method
AdLint::Cc1::StandardTypeId::new
# File lib/adlint/cc1/type.rb, line 4642 def initialize super("signed long long") end
Public Instance Methods
==(rhs_id)
click to toggle source
# File lib/adlint/cc1/type.rb, line 4646 def ==(rhs_id) case rhs_id when SignedLongLongTypeId, LongLongTypeId, LongLongIntTypeId, SignedLongLongIntTypeId true else false end end