Files
divkit/client/ios/Core/BasePublic/IndexSetExtensions.swift
T
2023-03-28 12:17:21 +03:00

12 lines
233 B
Swift

// Copyright 2018 Yandex LLC. All rights reserved.
import Foundation
extension IndexSet {
public func shifting(by delta: Int) -> IndexSet {
var result = self
result.shift(startingAt: 0, by: delta)
return result
}
}