2019-12-19 17:32:49 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-12-14 07:01:21 +00:00
|
|
|
*/
|
|
|
|
|
|
2016-12-19 17:13:21 +00:00
|
|
|
import Foundation
|
2016-12-14 07:01:21 +00:00
|
|
|
|
2016-12-19 17:13:21 +00:00
|
|
|
extension IndexSet {
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-19 17:13:21 +00:00
|
|
|
static var zero: IndexSet {
|
|
|
|
|
return NSIndexSet(index: 0) as IndexSet
|
2016-12-14 07:01:21 +00:00
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-14 07:01:21 +00:00
|
|
|
}
|