blob: 9457e037cf4579560af23ce7d159730fa0d79a57 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001
2 **********************************************************
3 * ACHTUNG: EFUN EXISTIERT NICHT MEHR! NICHT VERWENDEN! *
4 **********************************************************
5
6SYNOPSIS:
7 mixed *exclude_array(mixed *arr, int from, int to)
8
9DESCRIPTION:
10 Deletes an section from an array.
11
12 Please use the slicing operator:
13 arr = arr[0..from-1]+arr[to+1..<1]
14 or even better:
15 arr[from..to] = ({});
16
17 This efun is temporarily a simulated efun until is finally
18 droppped.
19
20HISTORY
21 Removed in LDMud 3.3.
22
23SEE ALSO
24 [](E)
25
2616.12.2008 Zesstra
27