mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
12 lines
233 B
Swift
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
|
|
}
|
|
}
|