Files
divkit/client/ios/Core/Base/TupleExtensions.swift
T
babaevmm f250ad7b40 open rw locks pr
add rw locks usage
2022-09-26 16:41:40 +03:00

7 lines
186 B
Swift

// Copyright 2018 Yandex LLC. All rights reserved.
@inlinable
public func + <T: Numeric, U: Numeric>(_ lhs: (T, U), _ rhs: (T, U)) -> (T, U) {
return (lhs.0 + rhs.0, lhs.1 + rhs.1)
}