Guest User

Untitled

a guest
Nov 24th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. struct Obj {
  2. Type data
  3. int index;
  4. }
  5.  
  6. array:Array<Obj> = [....];
  7.  
  8. function remove(obj:Obj, array:Array<Obj>) {
  9. var swp = array[array.length-1];
  10. swp.index = obj.index;
  11. array[obj.index] = swp;
  12. array.pop();
  13. }
Add Comment
Please, Sign In to add comment