Class: OpenCL::Long
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- OpenCL::Long
- Defined in:
- lib/opencl_ruby_ffi/Arithmetic_gen.rb
Overview
Maps the cl_long type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0) ⇒ Long
constructor
Creates a new Long 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) ⇒ Long
Creates a new Long with members set to 0 or to the user specified values
133 134 135 136 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 133 def initialize( s0 = 0 ) super() self[:s0] = s0 end |
Instance Method Details
#s0 ⇒ Object
Reads the s0 member
138 139 140 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 138 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
142 143 144 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 142 def s0=(value) self[:s0] = value end |
#to_s ⇒ Object
145 146 147 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 145 def to_s return "Long{ #{self[:s0]} }" end |