• Overview
@angular/cdk/drag-drop

transferArrayItem

function

Moves an item from one array to another.

API

  
    function transferArrayItem<T = any>(  currentArray: T[],  targetArray: T[],  currentIndex: number,  targetIndex: number): void;
  
  

transferArrayItem

void

Moves an item from one array to another.

@paramcurrentArrayT[]

Array from which to transfer the item.

@paramtargetArrayT[]

Array into which to put the item.

@paramcurrentIndexnumber

Index of the item in its current array.

@paramtargetIndexnumber

Index at which to insert the item.

@returnsvoid
Jump to details