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

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

Overview

Represents a vector type (SIMD vector). Vector types are used for SIMD operations and have a fixed number of elements of the same type.

Instance Attribute Summary

Attributes inherited from Type

#translation_unit, #type

Instance Method Summary collapse

Methods inherited from Type

#==, #alignof, #canonical, #const_qualified?, create, #declaration, #initialize, #kind, #kind_spelling, #non_reference_type, #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

Get the element type of this vector.



15
16
17
# File 'lib/ffi/clang/types/vector.rb', line 15

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

#sizeObject

Get the number of elements in this vector.



21
22
23
# File 'lib/ffi/clang/types/vector.rb', line 21

def size
  Lib.get_num_elements(@type)
end