mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-13 09:07:16 +01:00
16 lines
302 B
Swift
16 lines
302 B
Swift
//
|
|
// NSKeyValueObservation.swift
|
|
// Twidere
|
|
//
|
|
// Created by Cirno MainasuK on 2020-7-20.
|
|
// Copyright © 2020 Twidere. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension NSKeyValueObservation {
|
|
public func store(in set: inout Set<NSKeyValueObservation>) {
|
|
set.insert(self)
|
|
}
|
|
}
|