|
|
|
|
|
|
%filterOut()
| Aliases | %filterOut( ) |
|---|
| Parameters | array @anArray, mixed @value1 [, mixed @value2 [, ... ] ] |
|---|
|
A useful function that returns an array consisting of all the elements in @anArray with the given @value1, @value2, ..., @valueX values removed.
Example:
@targets = %filterOut( %roomGetMobs(), @n, @t ) %echoTo( "The sounds of fighting disturb your thoughts.", @targets ) |
|
|
|
|
|
|
|