MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | |
| 2 | ********************************************************** |
| 3 | * ACHTUNG: EFUN EXISTIERT NICHT MEHR! NICHT VERWENDEN! * |
| 4 | ********************************************************** |
| 5 | |
| 6 | SYNOPSIS: |
| 7 | mixed *exclude_array(mixed *arr, int from, int to) |
| 8 | |
| 9 | DESCRIPTION: |
| 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 | |
| 20 | HISTORY |
| 21 | Removed in LDMud 3.3. |
| 22 | |
| 23 | SEE ALSO |
| 24 | [](E) |
| 25 | |
| 26 | 16.12.2008 Zesstra |
| 27 | |