[stdlib] De-underscore Range.init(uncheckedBounds:)

This commit is contained in:
Dave Abrahams
2016-04-06 09:20:30 -07:00
parent 8e5c9726cc
commit 5864117b1b
5 changed files with 17 additions and 17 deletions

View File

@@ -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