Class: OpenCL::Char
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- OpenCL::Char
- Defined in:
- lib/opencl_ruby_ffi/Arithmetic_gen.rb
Overview
Maps the cl_char type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0) ⇒ Char
constructor
Creates a new Char 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) ⇒ Char
Creates a new Char with members set to 0 or to the user specified values
7 8 9 10 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 7 def initialize( s0 = 0 ) super() self[:s0] = s0 end |
Instance Method Details
#s0 ⇒ Object
Reads the s0 member
12 13 14 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 12 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
16 17 18 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 16 def s0=(value) self[:s0] = value end |
#to_s ⇒ Object
19 20 21 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 19 def to_s return "Char{ #{self[:s0]} }" end |