mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
f250ad7b40
add rw locks usage
7 lines
186 B
Swift
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)
|
|
}
|