Class: OpenCL::Long1
- Defined in:
- lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb
Overview
Maps the cl_long type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0) ⇒ Long1
constructor
Creates a new Long1 with members set to 0 or to the user specified values.
- #inspect ⇒ Object
-
#s0 ⇒ Object
Reads the s0 member.
-
#s0=(value) ⇒ Object
Sets the s0 member to value.
- #to_s ⇒ Object
Constructor Details
#initialize(s0 = 0) ⇒ Long1
Creates a new Long1 with members set to 0 or to the user specified values. If a Pointer is passed as the first argument, Long1 maps the memory pointed.
193 194 195 196 197 198 199 200 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 193 def initialize( s0 = 0 ) if s0.is_a?(FFI::Pointer) then super(s0) else super() self[:s0] = s0 end end |
Instance Method Details
#inspect ⇒ Object
210 211 212 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 210 def inspect return "#<#{self.class.name}: #{self[:s0]}>" end |
#s0 ⇒ Object
Reads the s0 member
202 203 204 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 202 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
206 207 208 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 206 def s0=(value) self[:s0] = value end |
#to_s ⇒ Object
214 215 216 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 214 def to_s return "Long1{ #{self[:s0]} }" end |