class Udgenerator::NSValue

Public Instance Methods

==(type) click to toggle source
Calls superclass method Udgenerator::Type#==
# File lib/udgenerator/type.rb, line 227
def == (type)
        NSValue === type && super(type)
end
defaultValue() click to toggle source
# File lib/udgenerator/type.rb, line 236
def defaultValue
        "@0"
end
objectExchange(value) click to toggle source
# File lib/udgenerator/type.rb, line 242
def objectExchange(value)
        "@(#{value})"
end
swift_default_value() click to toggle source
# File lib/udgenerator/type.rb, line 245
def swift_default_value
        "0"
end
swift_type_name() click to toggle source
# File lib/udgenerator/type.rb, line 233
def swift_type_name
        "NSValue"
end
typeExchange(obj) click to toggle source
# File lib/udgenerator/type.rb, line 239
def typeExchange(obj)
        "[#{obj} integerValue]"
end
type_name() click to toggle source
# File lib/udgenerator/type.rb, line 230
def type_name
        "NSValue"
end