class FFIGen::Clang::Type

The type of an element in the abstract syntax tree.

Fields:

:kind

(Symbol from enum_type_kind)

:data

(Array<FFI::Pointer(*Void)>)

Public Instance Methods

==(other) click to toggle source
# File lib/ffi_gen.rb, line 62
def ==(other)
  other.is_a?(Clang::Type) && Clang.equal_types(self, other) == 1
end
eql?(other) click to toggle source
# File lib/ffi_gen.rb, line 66
def eql?(other)
  self == other
end
hash() click to toggle source
# File lib/ffi_gen.rb, line 70
def hash
  0 # no hash available
end