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:
William S Fulton 2004-11-01 22:56:31 +00:00
commit dc903c677a
16 changed files with 911 additions and 14 deletions

View 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)