removeRange

open override fun removeRange(start: Int, count: Int, onResult: (ListAdapterResult) -> Unit?)

Removes a contiguous range using start index and count.

시작 인덱스와 개수 기준으로 연속 구간을 제거합니다.

Example: start=3, count=2 removes indices 3 and 4.

예: start=3, count=2이면 인덱스 3, 4를 제거합니다.

Parameters

start

Start index of range to remove.

제거 범위의 시작 인덱스입니다.

count

Number of items to remove from start.

start부터 제거할 아이템 개수입니다.

onResult

Callback invoked when the queue operation reaches terminal state (nullable).

큐 연산이 종료 상태에 도달하면 호출되는 결과 콜백입니다(null 가능).