Class: FFI::Clang::Types::Vector

Inherits:
Type
  • Object
show all
Defined in:
lib/ffi/clang/types/vector.rb

Instance Attribute Summary

Attributes inherited from Type

#translation_unit, #type

Instance Method Summary collapse

Methods inherited from Type

#==, #alignof, #const_qualified?, create, #declaration, #initialize, #kind, #kind_spelling, #pod?, #ref_qualifier, #restrict_qualified?, #sizeof, #spelling, #to_s, #volatile_qualified?

Constructor Details

This class inherits a constructor from FFI::Clang::Types::Type

Instance Method Details

#element_typeObject



5
6
7
# File 'lib/ffi/clang/types/vector.rb', line 5

def element_type
	Type.create Lib.get_element_type(@type), @translation_unit
end

#sizeObject



9
10
11
# File 'lib/ffi/clang/types/vector.rb', line 9

def size
	Lib.get_num_elements(@type)
end