*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4476 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
ea6bfb1867
commit
8cd6b71d0c
1 changed files with 25 additions and 0 deletions
25
Examples/test-suite/ruby/lib_carrays_runme.rb
Normal file
25
Examples/test-suite/ruby/lib_carrays_runme.rb
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
require 'lib_carrays'
|
||||
|
||||
include Lib_carrays
|
||||
|
||||
#
|
||||
# Testing for %array_functions(int,intArray)
|
||||
#
|
||||
ary = new_intArray(2)
|
||||
intArray_setitem(ary, 0, 0)
|
||||
intArray_setitem(ary, 1, 1)
|
||||
intArray_getitem(ary, 0)
|
||||
intArray_getitem(ary, 1)
|
||||
delete_intArray(ary)
|
||||
|
||||
#
|
||||
# Testing for %array_class(double, doubleArray)
|
||||
#
|
||||
ary = DoubleArray.new(2)
|
||||
ary[0] = 0.0
|
||||
ary[1] = 1.0
|
||||
ary[0]
|
||||
ary[1]
|
||||
ptr = ary.cast
|
||||
ary2 = DoubleArray.frompointer(ptr)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue