lib_xxxx tests renamed to li_xxxx as a workaround in glib which Mono C# uses - libraries wont be loaded if they start with lib
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6591 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
012740ca73
commit
dc903c677a
16 changed files with 911 additions and 14 deletions
17
Examples/test-suite/ruby/li_std_vector_runme.rb
Executable file
17
Examples/test-suite/ruby/li_std_vector_runme.rb
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
require 'lib_std_vector'
|
||||
|
||||
include Lib_std_vector
|
||||
|
||||
iv = IntVector.new(4)
|
||||
0.upto(3) { |i| iv[i] = i }
|
||||
|
||||
x = average(iv)
|
||||
y = average([1, 2, 3, 4])
|
||||
|
||||
a = half([10, 10.5, 11, 11.5])
|
||||
|
||||
dv = DoubleVector.new(10)
|
||||
0.upto(9) { |i| dv[i] = i/2.0 }
|
||||
|
||||
halve_in_place(dv)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue