Add an element to an array
Void addAt( var [a] array, a elem, Int idx )
array The array to act on
elem The new element
idx The index of the element to add before
Add (in-place) an element before position idx
array = [1,2,3,4,5,6,7]; addAt(array,5,2); // array = [1,2,5,3,4,5,6,7];
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.
Array.push (3kaya) is equivalent to idx = size(array)
Array.removeAt (3kaya)
Array.unshift (3kaya) is equivalent to idx = 0