bigloo.foreign.fill_vector C# (CSharp) Method

fill_vector() public static method

public static fill_vector ( Object v, int len, Object o ) : Object
v Object
len int
o Object
return Object
        public static Object fill_vector( Object[] v, int len, Object o )
        {
            for ( int i= 0 ; i < len ; ++i )
               v[i]= o;
            return unspecified._unspecified;
        }
foreign