Confirm Pair to Sendable

This commit is contained in:
1024jp 2024-04-02 12:49:26 +09:00
parent 19edfc8b3f
commit bef1c276b3

View File

@ -8,7 +8,7 @@
//
// ---------------------------------------------------------------------------
//
// © 2016-2022 1024jp
// © 2016-2024 1024jp
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@ -39,6 +39,7 @@ struct Pair<T> {
extension Pair: Equatable where T: Equatable { }
extension Pair: Hashable where T: Hashable { }
extension Pair: Sendable where T: Sendable { }