mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[stdlib] De-underscore Range.init(uncheckedBounds:)
This commit is contained in:
@@ -302,7 +302,7 @@ extension ${Self} {
|
||||
get {
|
||||
return self[
|
||||
Range(
|
||||
_uncheckedBounds: (
|
||||
uncheckedBounds: (
|
||||
lower: bounds.lowerBound,
|
||||
upper: successor(of: bounds.upperBound)))
|
||||
]
|
||||
@@ -311,7 +311,7 @@ extension ${Self} {
|
||||
set {
|
||||
self[
|
||||
Range(
|
||||
_uncheckedBounds: (
|
||||
uncheckedBounds: (
|
||||
lower: bounds.lowerBound,
|
||||
upper: successor(of: bounds.upperBound)))
|
||||
] = newValue
|
||||
|
||||
Reference in New Issue
Block a user