Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 3b38a4a

Browse files
committed
waz
1 parent 9f2b7f4 commit 3b38a4a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

code/__HELPERS/_lists.dm

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@
5454
#define UNSETEMPTY(L) if (L && !length(L)) L = null
5555
///If the provided key -> list is empty, remove it from the list
5656
#define ASSOC_UNSETEMPTY(L, K) if (!length(L[K])) L -= K;
57-
///Use LAZYLISTDUPLICATE instead if you want it to null with no entries
58-
#define LAZYCOPY(L) (L ? L.Copy() : list() )
5957
///Like LAZYCOPY - copies an input list if the list has entries, If it doesn't the assigned list is nulled
6058
#define LAZYLISTDUPLICATE(L) (L ? L.Copy() : null )
6159
///Remove an item from the list, set the list to null if empty

0 commit comments

Comments
 (0)