class Udgenerator::AnyObject

Attributes

type[R]

Public Class Methods

new(type) click to toggle source
# File lib/udgenerator/type.rb, line 213
def initialize(type)
        @type = type
end

Public Instance Methods

==(type) click to toggle source
Calls superclass method Udgenerator::NSObject#==
# File lib/udgenerator/type.rb, line 216
def == (type)
        AnyObject === type && @type === type.type && super(type)
end
swift_type_name() click to toggle source
# File lib/udgenerator/type.rb, line 222
def swift_type_name
        @type
end
type_name() click to toggle source
# File lib/udgenerator/type.rb, line 219
def type_name
        "#{@type} *"
end