Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Adam CameronAdam CameronLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Fix versions
Priority
New
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Adam Cameron
Adam CameronLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Fix versions
Priority
Created 1 February 2015 at 15:50
Updated 11 June 2021 at 14:11
Resolved 11 June 2021 at 14:11
Copied from: https://issues.jboss.org/browse/RAILO-3252
Performing queue / stack operations on arrays is fairly common, and whilst doable with delete() / insert() methods, is not as elegant as these specific methods.
splice() is less obvious, and I'm not sure JavaScript (which is where I'm getting the motivation for these) gets it quite right. I see two operations here: basically an "interior" version of push() and pop(), where the items are inserted at the location (moving subsequent items down, not overwriting them), or extracting and returning from the specified location.