Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

  • TValue

Hierarchy

  • LoDashWrapper<TValue>
    • LoDashExplicitWrapper

Index

Methods

bindAll

  • bindAll(...methodNames: Array<Many<string>>): this
  • see

    _.bindAll

    Parameters

    • Rest ...methodNames: Array<Many<string>>

    Returns this

commit

  • commit(): this
  • Executes the chained sequence and returns the wrapped result.

    Returns this

    Returns the new lodash wrapper instance.

each

  • each<T>(this: LoDashWrapper<T[] | null | undefined>, iteratee?: ArrayIterator<T, any>): this
  • each(this: LoDashWrapper<string | null | undefined>, iteratee?: StringIterator<any>): this
  • each<T>(this: LoDashWrapper<List<T> | null | undefined>, iteratee?: ListIterator<T, any>): this
  • each<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forEach

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T[] | null | undefined>
    • Optional iteratee: ArrayIterator<T, any>

    Returns this

  • see

    _.forEach

    Parameters

    • this: LoDashWrapper<string | null | undefined>
    • Optional iteratee: StringIterator<any>

    Returns this

  • see

    _.forEach

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<List<T> | null | undefined>
    • Optional iteratee: ListIterator<T, any>

    Returns this

  • see

    _.forEach

    Type parameters

    • T: object

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

eachRight

  • eachRight<T>(this: LoDashWrapper<T[] | null | undefined>, iteratee?: ArrayIterator<T, any>): this
  • eachRight(this: LoDashWrapper<string | null | undefined>, iteratee?: StringIterator<any>): this
  • eachRight<T>(this: LoDashWrapper<List<T> | null | undefined>, iteratee?: ListIterator<T, any>): this
  • eachRight<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forEachRight

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T[] | null | undefined>
    • Optional iteratee: ArrayIterator<T, any>

    Returns this

  • see

    _.forEachRight

    Parameters

    • this: LoDashWrapper<string | null | undefined>
    • Optional iteratee: StringIterator<any>

    Returns this

  • see

    _.forEachRight

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<List<T> | null | undefined>
    • Optional iteratee: ListIterator<T, any>

    Returns this

  • see

    _.forEachRight

    Type parameters

    • T: object

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

flip

  • flip(): this
  • see

    _.flip

    Returns this

forEach

  • forEach<T>(this: LoDashWrapper<T[] | null | undefined>, iteratee?: ArrayIterator<T, any>): this
  • forEach(this: LoDashWrapper<string | null | undefined>, iteratee?: StringIterator<any>): this
  • forEach<T>(this: LoDashWrapper<List<T> | null | undefined>, iteratee?: ListIterator<T, any>): this
  • forEach<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forEach

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T[] | null | undefined>
    • Optional iteratee: ArrayIterator<T, any>

    Returns this

  • see

    _.forEach

    Parameters

    • this: LoDashWrapper<string | null | undefined>
    • Optional iteratee: StringIterator<any>

    Returns this

  • see

    _.forEach

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<List<T> | null | undefined>
    • Optional iteratee: ListIterator<T, any>

    Returns this

  • see

    _.forEach

    Type parameters

    • T: object

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

forEachRight

  • forEachRight<T>(this: LoDashWrapper<T[] | null | undefined>, iteratee?: ArrayIterator<T, any>): this
  • forEachRight(this: LoDashWrapper<string | null | undefined>, iteratee?: StringIterator<any>): this
  • forEachRight<T>(this: LoDashWrapper<List<T> | null | undefined>, iteratee?: ListIterator<T, any>): this
  • forEachRight<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forEachRight

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T[] | null | undefined>
    • Optional iteratee: ArrayIterator<T, any>

    Returns this

  • see

    _.forEachRight

    Parameters

    • this: LoDashWrapper<string | null | undefined>
    • Optional iteratee: StringIterator<any>

    Returns this

  • see

    _.forEachRight

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<List<T> | null | undefined>
    • Optional iteratee: ListIterator<T, any>

    Returns this

  • see

    _.forEachRight

    Type parameters

    • T: object

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

forIn

  • forIn<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forIn

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

forInRight

  • forInRight<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forInRight

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

forOwn

  • forOwn<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forOwn

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

forOwnRight

  • forOwnRight<T>(this: LoDashWrapper<T | null | undefined>, iteratee?: ObjectIterator<T, any>): this
  • see

    _.forOwnRight

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<T | null | undefined>
    • Optional iteratee: ObjectIterator<T, any>

    Returns this

once

  • once(): this
  • see

    _.once

    Returns this

pop

  • pop<T>(this: LoDashExplicitWrapper<List<T> | null | undefined>): LoDashExplicitWrapper<T | undefined>
  • Type parameters

    • T

    Parameters

    • this: LoDashExplicitWrapper<List<T> | null | undefined>

    Returns LoDashExplicitWrapper<T | undefined>

pullAllBy

  • see

    _.pullAllBy

    Type parameters

    • T

    Parameters

    Returns this

  • see

    _.pullAllBy

    Type parameters

    • T1

    • T2

    Parameters

    Returns this

pullAllWith

  • pullAllWith<T>(this: LoDashWrapper<List<T>>, values?: List<T>, comparator?: Comparator<T>): this
  • pullAllWith<T1, T2>(this: LoDashWrapper<List<T1>>, values: List<T2>, comparator: Comparator2<T1, T2>): this
  • see

    _.pullAllWith

    Type parameters

    • T

    Parameters

    • this: LoDashWrapper<List<T>>
    • Optional values: List<T>
    • Optional comparator: Comparator<T>

    Returns this

  • see

    _.pullAllWith

    Type parameters

    • T1

    • T2

    Parameters

    Returns this

pullAt

  • pullAt(...indexes: Array<Many<number>>): this
  • see

    _.pullAt

    Parameters

    • Rest ...indexes: Array<Many<number>>

    Returns this

push

  • push<T>(this: LoDashExplicitWrapper<List<T> | null | undefined>, ...items: T[]): this
  • Type parameters

    • T

    Parameters

    • this: LoDashExplicitWrapper<List<T> | null | undefined>
    • Rest ...items: T[]

    Returns this

reverse

  • reverse(): this
  • Reverses the wrapped array so the first element becomes the last, the second element becomes the second to last, and so on.

    Note: This method mutates the wrapped array.

    Returns this

    Returns the new reversed lodash wrapper instance.

shift

  • shift<T>(this: LoDashExplicitWrapper<List<T> | null | undefined>): LoDashExplicitWrapper<T | undefined>
  • Type parameters

    • T

    Parameters

    • this: LoDashExplicitWrapper<List<T> | null | undefined>

    Returns LoDashExplicitWrapper<T | undefined>

sort

  • sort<T>(this: LoDashExplicitWrapper<List<T> | null | undefined>, compareFn?: undefined | function): this
  • Type parameters

    • T

    Parameters

    • this: LoDashExplicitWrapper<List<T> | null | undefined>
    • Optional compareFn: undefined | function

    Returns this

splice

  • splice<T>(this: LoDashExplicitWrapper<List<T> | null | undefined>, start: number, deleteCount?: undefined | number, ...items: T[]): this
  • Type parameters

    • T

    Parameters

    • this: LoDashExplicitWrapper<List<T> | null | undefined>
    • start: number
    • Optional deleteCount: undefined | number
    • Rest ...items: T[]

    Returns this

tap

  • tap(interceptor: function): this
  • see

    _.tap

    Parameters

    • interceptor: function
        • (value: TValue): void
        • Parameters

          • value: TValue

          Returns void

    Returns this

toJSON

  • toJSON(): TValue
  • see

    _.value

    Returns TValue

toString

  • toString(): string
  • Produces the result of coercing the unwrapped value to a string.

    Returns string

    Returns the coerced string value.

unshift

  • unshift<T>(this: LoDashExplicitWrapper<List<T> | null | undefined>, ...items: T[]): this
  • Type parameters

    • T

    Parameters

    • this: LoDashExplicitWrapper<List<T> | null | undefined>
    • Rest ...items: T[]

    Returns this

value

  • value(): TValue
  • Executes the chained sequence to extract the unwrapped value.

    alias

    _.toJSON, _.valueOf

    Returns TValue

    Returns the resolved unwrapped value.

valueOf

  • valueOf(): TValue
  • see

    _.value

    Returns TValue

Generated using TypeDoc