Interface LoDashImplicitWrapper<TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue, TValue>
Type parameters
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
-
TValue
Methods
countBy
- countBy<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, iteratee?: ValueIteratee<T>): LoDashImplicitWrapper<Dictionary<number>>
- countBy<T>(this: LoDashImplicitWrapper<T | null | undefined>, iteratee?: ValueIteratee<T[keyof T]>): LoDashImplicitWrapper<Dictionary<number>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<Dictionary<number>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Optional iteratee: ValueIteratee<T[keyof T]>
Returns LoDashImplicitWrapper<Dictionary<number>>
every
- every<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate?: ListIterateeCustom<T, boolean>): boolean
- every<T>(this: LoDashImplicitWrapper<T | null | undefined>, predicate?: ObjectIterateeCustom<T, boolean>): boolean
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns boolean
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns boolean
filter
- filter(this: LoDashImplicitWrapper<string | null | undefined>, predicate?: StringIterator<boolean>): LoDashImplicitWrapper<string[]>
- filter<T, S>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate: ListIteratorTypeGuard<T, S>): LoDashImplicitWrapper<S[]>
- filter<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate?: ListIterateeCustom<T, boolean>): LoDashImplicitWrapper<T[]>
- filter<T, S>(this: LoDashImplicitWrapper<T | null | undefined>, predicate: ObjectIteratorTypeGuard<T, S>): LoDashImplicitWrapper<S[]>
- filter<T>(this: LoDashImplicitWrapper<T | null | undefined>, predicate?: ObjectIterateeCustom<T, boolean>): LoDashImplicitWrapper<Array<T[keyof T]>>
-
Parameters
-
this: LoDashImplicitWrapper<string | null | undefined>
-
Optional predicate: StringIterator<boolean>
Returns LoDashImplicitWrapper<string[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<S[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<S[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<Array<T[keyof T]>>
find
- find<T, S>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate: ListIteratorTypeGuard<T, S>, fromIndex?: undefined | number): S | undefined
- find<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate?: ListIterateeCustom<T, boolean>, fromIndex?: undefined | number): T | undefined
- find<T, S>(this: LoDashImplicitWrapper<T | null | undefined>, predicate: ObjectIteratorTypeGuard<T, S>, fromIndex?: undefined | number): S | undefined
- find<T>(this: LoDashImplicitWrapper<T | null | undefined>, predicate?: ObjectIterateeCustom<T, boolean>, fromIndex?: undefined | number): T[keyof T] | undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns S
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns T
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns S
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns T[keyof T]
|
undefined
findLast
- findLast<T, S>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate: ListIteratorTypeGuard<T, S>, fromIndex?: undefined | number): S | undefined
- findLast<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate?: ListIterateeCustom<T, boolean>, fromIndex?: undefined | number): T | undefined
- findLast<T, S>(this: LoDashImplicitWrapper<T | null | undefined>, predicate: ObjectIteratorTypeGuard<T, S>, fromIndex?: undefined | number): S | undefined
- findLast<T>(this: LoDashImplicitWrapper<T | null | undefined>, predicate?: ObjectIterateeCustom<T, boolean>, fromIndex?: undefined | number): T[keyof T] | undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns S
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns T
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns S
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
Optional fromIndex: undefined | number
Returns T[keyof T]
|
undefined
flatMap
- flatMap<T>(this: LoDashImplicitWrapper<List<Many<T>> | Dictionary<Many<T>> | NumericDictionary<Many<T>> | null | undefined>): LoDashImplicitWrapper<T[]>
- flatMap(): LoDashImplicitWrapper<any[]>
- flatMap<T, TResult>(this: LoDashImplicitWrapper<List<T> | null | undefined>, iteratee: ListIterator<T, Many<TResult>>): LoDashImplicitWrapper<TResult[]>
- flatMap<T, TResult>(this: LoDashImplicitWrapper<T | null | undefined>, iteratee: ObjectIterator<T, Many<TResult>>): LoDashImplicitWrapper<TResult[]>
- flatMap(iteratee: string): LoDashImplicitWrapper<any[]>
- flatMap(iteratee: object): LoDashImplicitWrapper<boolean[]>
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<T[]>
-
Returns LoDashImplicitWrapper<any[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<TResult[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<TResult[]>
-
Parameters
Returns LoDashImplicitWrapper<any[]>
-
Parameters
Returns LoDashImplicitWrapper<boolean[]>
flatMapDeep
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<TResult[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<TResult[]>
-
Parameters
-
this: LoDashImplicitWrapper<object | null | undefined>
-
iteratee: string
Returns LoDashImplicitWrapper<any[]>
-
Parameters
-
this: LoDashImplicitWrapper<object | null | undefined>
-
iteratee: object
Returns LoDashImplicitWrapper<boolean[]>
flatMapDepth
- flatMapDepth<T>(this: LoDashImplicitWrapper<List<ListOfRecursiveArraysOrValues<T> | T> | Dictionary<ListOfRecursiveArraysOrValues<T> | T> | NumericDictionary<ListOfRecursiveArraysOrValues<T> | T> | null | undefined>): LoDashImplicitWrapper<T[]>
- flatMapDepth<T, TResult>(this: LoDashImplicitWrapper<List<T> | null | undefined>, iteratee: ListIterator<T, ListOfRecursiveArraysOrValues<TResult> | TResult>, depth?: undefined | number): LoDashImplicitWrapper<TResult[]>
- flatMapDepth<T, TResult>(this: LoDashImplicitWrapper<T | null | undefined>, iteratee: ObjectIterator<T, ListOfRecursiveArraysOrValues<TResult> | TResult>, depth?: undefined | number): LoDashImplicitWrapper<TResult[]>
- flatMapDepth(this: LoDashImplicitWrapper<object | null | undefined>, iteratee: string, depth?: undefined | number): LoDashImplicitWrapper<any[]>
- flatMapDepth(this: LoDashImplicitWrapper<object | null | undefined>, iteratee: object, depth?: undefined | number): LoDashImplicitWrapper<boolean[]>
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
Optional depth: undefined | number
Returns LoDashImplicitWrapper<TResult[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
Optional depth: undefined | number
Returns LoDashImplicitWrapper<TResult[]>
-
Parameters
-
this: LoDashImplicitWrapper<object | null | undefined>
-
iteratee: string
-
Optional depth: undefined | number
Returns LoDashImplicitWrapper<any[]>
-
Parameters
-
this: LoDashImplicitWrapper<object | null | undefined>
-
iteratee: object
-
Optional depth: undefined | number
Returns LoDashImplicitWrapper<boolean[]>
groupBy
- groupBy<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, iteratee?: ValueIteratee<T>): LoDashImplicitWrapper<Dictionary<T[]>>
- groupBy<T>(this: LoDashImplicitWrapper<T | null | undefined>, iteratee?: ValueIteratee<T[keyof T]>): LoDashImplicitWrapper<Dictionary<Array<T[keyof T]>>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<Dictionary<T[]>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Optional iteratee: ValueIteratee<T[keyof T]>
Returns LoDashImplicitWrapper<Dictionary<Array<T[keyof T]>>>
includes
- includes<T>(this: LoDashImplicitWrapper<List<T> | Dictionary<T> | NumericDictionary<T> | null | undefined>, target: T, fromIndex?: undefined | number): boolean
-
Type parameters
Parameters
Returns boolean
invokeMap
- invokeMap(methodName: string, ...args: any[]): LoDashImplicitWrapper<any[]>
- invokeMap<TResult>(method: function, ...args: any[]): LoDashImplicitWrapper<TResult[]>
-
Parameters
-
methodName: string
-
Rest ...args: any[]
Returns LoDashImplicitWrapper<any[]>
-
Type parameters
Parameters
-
method: function
-
- (...args: any[]): TResult
-
Parameters
Returns TResult
-
Rest ...args: any[]
Returns LoDashImplicitWrapper<TResult[]>
keyBy
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<Dictionary<T>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<Dictionary<T[keyof T]>>
map
- map<T, TResult>(this: LoDashImplicitWrapper<T[] | null | undefined>, iteratee: ArrayIterator<T, TResult>): LoDashImplicitWrapper<TResult[]>
- map<T, TResult>(this: LoDashImplicitWrapper<List<T> | null | undefined>, iteratee: ListIterator<T, TResult>): LoDashImplicitWrapper<TResult[]>
- map<T>(this: LoDashImplicitWrapper<List<T> | Dictionary<T> | NumericDictionary<T> | null | undefined>): LoDashImplicitWrapper<T[]>
- map<T, TResult>(this: LoDashImplicitWrapper<T | null | undefined>, iteratee: ObjectIterator<T, TResult>): LoDashImplicitWrapper<TResult[]>
- map<T, K>(this: LoDashImplicitWrapper<List<T> | Dictionary<T> | NumericDictionary<T> | null | undefined>, iteratee: K): LoDashImplicitWrapper<Array<T[K]>>
- map<T>(this: LoDashImplicitWrapper<List<T> | Dictionary<T> | NumericDictionary<T> | null | undefined>, iteratee?: undefined | string): LoDashImplicitWrapper<any[]>
- map<T>(this: LoDashImplicitWrapper<List<T> | Dictionary<T> | NumericDictionary<T> | null | undefined>, iteratee?: undefined | object): LoDashImplicitWrapper<boolean[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T[] | null | undefined>
-
Returns LoDashImplicitWrapper<TResult[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<TResult[]>
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<TResult[]>
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<Array<T[K]>>
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<any[]>
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<boolean[]>
orderBy
- orderBy<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, iteratees?: Many<ListIterator<T, NotVoid>>, orders?: Many<boolean | "asc" | "desc">): LoDashImplicitWrapper<T[]>
- orderBy<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, iteratees?: Many<ListIteratee<T>>, orders?: Many<boolean | "asc" | "desc">): LoDashImplicitWrapper<T[]>
- orderBy<T>(this: LoDashImplicitWrapper<T | null | undefined>, iteratees?: Many<ObjectIterator<T, NotVoid>>, orders?: Many<boolean | "asc" | "desc">): LoDashImplicitWrapper<Array<T[keyof T]>>
- orderBy<T>(this: LoDashImplicitWrapper<T | null | undefined>, iteratees?: Many<ObjectIteratee<T>>, orders?: Many<boolean | "asc" | "desc">): LoDashImplicitWrapper<Array<T[keyof T]>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
Optional orders: Many<boolean | "asc" | "desc">
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
Optional orders: Many<boolean | "asc" | "desc">
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
Optional orders: Many<boolean | "asc" | "desc">
Returns LoDashImplicitWrapper<Array<T[keyof T]>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
Optional orders: Many<boolean | "asc" | "desc">
Returns LoDashImplicitWrapper<Array<T[keyof T]>>
partition
- partition<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, callback: ValueIteratee<T>): LoDashImplicitWrapper<[T[], T[]]>
- partition<T>(this: LoDashImplicitWrapper<T | null | undefined>, callback: ValueIteratee<T[keyof T]>): LoDashImplicitWrapper<[Array<T[keyof T]>, Array<T[keyof T]>]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<[T[], T[]]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<[Array<T[keyof T]>, Array<T[keyof T]>]>
reduce
- reduce<T, TResult>(this: LoDashImplicitWrapper<T[] | null | undefined>, callback: MemoListIterator<T, TResult, T[]>, accumulator: TResult): TResult
- reduce<T, TResult>(this: LoDashImplicitWrapper<List<T> | null | undefined>, callback: MemoListIterator<T, TResult, List<T>>, accumulator: TResult): TResult
- reduce<T, TResult>(this: LoDashImplicitWrapper<T | null | undefined>, callback: MemoObjectIterator<T[keyof T], TResult, T>, accumulator: TResult): TResult
- reduce<T>(this: LoDashImplicitWrapper<T[] | null | undefined>, callback: MemoListIterator<T, T, T[]>): T | undefined
- reduce<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, callback: MemoListIterator<T, T, List<T>>): T | undefined
- reduce<T>(this: LoDashImplicitWrapper<T | null | undefined>, callback: MemoObjectIterator<T[keyof T], T[keyof T], T>): T[keyof T] | undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T[] | null | undefined>
-
-
accumulator: TResult
Returns TResult
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
accumulator: TResult
Returns TResult
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
accumulator: TResult
Returns TResult
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T[] | null | undefined>
-
Returns T
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns T
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
callback: MemoObjectIterator<T[keyof T], T[keyof T], T>
Returns T[keyof T]
|
undefined
reduceRight
- reduceRight<T, TResult>(this: LoDashImplicitWrapper<T[] | null | undefined>, callback: MemoListIterator<T, TResult, T[]>, accumulator: TResult): TResult
- reduceRight<T, TResult>(this: LoDashImplicitWrapper<List<T> | null | undefined>, callback: MemoListIterator<T, TResult, List<T>>, accumulator: TResult): TResult
- reduceRight<T, TResult>(this: LoDashImplicitWrapper<T | null | undefined>, callback: MemoObjectIterator<T[keyof T], TResult, T>, accumulator: TResult): TResult
- reduceRight<T>(this: LoDashImplicitWrapper<T[] | null | undefined>, callback: MemoListIterator<T, T, T[]>): T | undefined
- reduceRight<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, callback: MemoListIterator<T, T, List<T>>): T | undefined
- reduceRight<T>(this: LoDashImplicitWrapper<T | null | undefined>, callback: MemoObjectIterator<T[keyof T], T[keyof T], T>): T[keyof T] | undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T[] | null | undefined>
-
-
accumulator: TResult
Returns TResult
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
-
accumulator: TResult
Returns TResult
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
-
accumulator: TResult
Returns TResult
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T[] | null | undefined>
-
Returns T
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns T
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
callback: MemoObjectIterator<T[keyof T], T[keyof T], T>
Returns T[keyof T]
|
undefined
reject
- reject(this: LoDashImplicitWrapper<string | null | undefined>, predicate?: StringIterator<boolean>): LoDashImplicitWrapper<string[]>
- reject<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate?: ListIterateeCustom<T, boolean>): LoDashImplicitWrapper<T[]>
- reject<T>(this: LoDashImplicitWrapper<T | null | undefined>, predicate?: ObjectIterateeCustom<T, boolean>): LoDashImplicitWrapper<Array<T[keyof T]>>
-
Parameters
-
this: LoDashImplicitWrapper<string | null | undefined>
-
Optional predicate: StringIterator<boolean>
Returns LoDashImplicitWrapper<string[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<Array<T[keyof T]>>
sample
- sample<T>(this: LoDashImplicitWrapper<List<T> | Dictionary<T> | NumericDictionary<T> | null | undefined>): T | undefined
- sample<T>(this: LoDashImplicitWrapper<T | null | undefined>): T[keyof T] | undefined
-
Type parameters
Parameters
Returns T
|
undefined
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
Returns T[keyof T]
|
undefined
sampleSize
- sampleSize<T>(this: LoDashImplicitWrapper<List<T> | Dictionary<T> | NumericDictionary<T> | null | undefined>, n?: undefined | number): LoDashImplicitWrapper<T[]>
- sampleSize<T>(this: LoDashImplicitWrapper<T | null | undefined>, n?: undefined | number): LoDashImplicitWrapper<Array<T[keyof T]>>
-
Type parameters
Parameters
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Optional n: undefined | number
Returns LoDashImplicitWrapper<Array<T[keyof T]>>
shuffle
- shuffle<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>): LoDashImplicitWrapper<T[]>
- shuffle<T>(this: LoDashImplicitWrapper<T | null | undefined>): LoDashImplicitWrapper<Array<T[keyof T]>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
Returns LoDashImplicitWrapper<Array<T[keyof T]>>
size
-
Returns number
some
- some<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, predicate?: ListIterateeCustom<T, boolean>): boolean
- some<T>(this: LoDashImplicitWrapper<T | null | undefined>, predicate?: ObjectIterateeCustom<T, boolean>): boolean
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns boolean
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns boolean
sortBy
- sortBy<T>(this: LoDashImplicitWrapper<List<T> | null | undefined>, ...iteratees: Array<Many<ListIteratee<T>>>): LoDashImplicitWrapper<T[]>
- sortBy<T>(this: LoDashImplicitWrapper<T | null | undefined>, ...iteratees: Array<Many<ObjectIteratee<T>>>): LoDashImplicitWrapper<Array<T[keyof T]>>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<List<T> | null | undefined>
-
Returns LoDashImplicitWrapper<T[]>
-
Type parameters
Parameters
-
this: LoDashImplicitWrapper<T | null | undefined>
-
Returns LoDashImplicitWrapper<Array<T[keyof T]>>
_.countBy