Class: OpenCL::UInt
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- OpenCL::UInt
- Defined in:
- lib/opencl_ruby_ffi/Arithmetic_gen.rb
Overview
Maps the cl_uint type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0) ⇒ UInt
constructor
Creates a new UInt with members set to 0 or to the user specified values.
-
#s0 ⇒ Object
Reads the s0 member.
-
#s0=(value) ⇒ Object
Sets the s0 member to value.
- #to_s ⇒ Object
Constructor Details
#initialize(s0 = 0) ⇒ UInt
Creates a new UInt with members set to 0 or to the user specified values
112 113 114 115 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 112 def initialize( s0 = 0 ) super() self[:s0] = s0 end |
Instance Method Details
#s0 ⇒ Object
Reads the s0 member
117 118 119 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 117 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
121 122 123 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 121 def s0=(value) self[:s0] = value end |
#to_s ⇒ Object
124 125 126 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 124 def to_s return "UInt{ #{self[:s0]} }" end |