Merge pull request #2697 from Citadel-Station-13/upstream-merge-30574

[MIRROR] Adds a few SDQL2 list wrappers
This commit is contained in:
LetterJay
2017-09-12 02:41:30 -05:00
committed by GitHub
@@ -170,5 +170,13 @@
return
L -= args.Copy(2)
/proc/_list_set(list/L, key, value)
L[key] = value
/proc/_list_numerical_add(L, key, num)
L[key] += num
/proc/_list_swap(list/L, Index1, Index2)
L.Swap(Index1, Index2)