[Pitch] Conditionally Conform Range and ClosedRange to BitwiseCopyable

I'm not sure if this actually requires evolution to do, but as neither type has a deinit and both merely contain two Bounds, it seems reasonable to me that they should both conditionally conform to BitwiseCopyable.

extension Range: BitwiseCopyable where Bound: BitwiseCopyable { }
extension ClosedRange: BitwiseCopyable where Bound: BitwiseCopyable { }
3 Likes