i suspect the answer to this is no, but i’m asking just to be sure.
i have a lot of cross-package conformances in a number of code bases that are doing some #if
#else
heroics to maintain compatibility with both versions of Swift:
#if swift(>=6.0)
extension Seconds:@retroactive AtomicValue
{
}
#else
extension Seconds:AtomicValue
{
}
#endif
are there less unwieldy ways to define these conformances?