*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4476 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
0720ce935a
commit
8c5c1e05b0
1 changed files with 25 additions and 0 deletions
25
SWIG/Examples/test-suite/ruby/lib_carrays_runme.rb
Normal file
25
SWIG/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