How do I initialize a 2D vector with a 2D array of values?
numbers = [[10,20,30], [10,20,30]];
nums = Vector.<Vector.<Number>>(numbers);
I tried this but it gives me the error:
TypeError: Error #1034: Type Coercion failed
How do I initialize a 2D vector with a 2D array of values?
numbers = [[10,20,30], [10,20,30]];
nums = Vector.<Vector.<Number>>(numbers);
I tried this but it gives me the error:
TypeError: Error #1034: Type Coercion failed
:: Copyright KIRUPA 2024 //--