Bitbybit Docs
    Preparing search index...

    Class RemoveItemsAtIndexesDto<T> (Inputs.Lists)

    A list and several positions for lists.removeItemsAtIndexes.

    Type Parameters

    • T
    Index

    Constructors

    Properties

    Constructors

    • Type Parameters

      • T

      Parameters

      • Optionallist: T[]
      • Optionalindexes: number[]
      • Optionalclone: boolean

      Returns RemoveItemsAtIndexesDto<T>

    Properties

    list: T[]

    The list to take the items out of.

    undefined
    
    indexes: number[]

    The positions to remove, counted on the list as it was before any removal; positions outside the list are ignored.

    undefined
    
    clone?: boolean

    When true, the list is deep-copied first so the input is never changed; when false the items are removed in place.

    true