mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 04:28:12 +01:00
Merge branch 'master' into upstream-merge-6762
This commit is contained in:
@@ -18,6 +18,9 @@
|
||||
|
||||
#define LAZYOR(L, I) if(!L) { L = list(); } L |= I;
|
||||
|
||||
// Adds I to L, initalizing L if necessary, if I is not already in L
|
||||
#define LAZYDISTINCTADD(L, I) if(!L) { L = list(); } L |= I;
|
||||
|
||||
#define LAZYFIND(L, V) L ? L.Find(V) : 0
|
||||
|
||||
// Reads I from L safely - Works with both associative and traditional lists.
|
||||
|
||||
Reference in New Issue
Block a user