- Preparing search index...
- The search index is not available
LDesign 基础库
- pullAll<T>(array, values?): T[]
-
Parameters
-
array: T[]
-
Optional
values: List<T>
Returns T[]
Returns array
.
- pullAll<T>(array, values?): List<T>
-
Parameters
-
array: List<T>
-
Optional
values: List<T>
Returns List<T>
This method is like
_.pull
except that it accepts an array of values to remove.Note: Unlike
_.difference
, this method mutatesarray
.Example