[stdlib] Eliminate _Element

This commit is contained in:
Dave Abrahams
2017-05-22 15:33:16 -07:00
parent 664948eb3c
commit 72f5e7c0c2
7 changed files with 24 additions and 28 deletions

View File

@@ -67,7 +67,7 @@ public protocol _MutableIndexable : _Indexable {
/// - Parameter position: The position of the element to access. `position`
/// must be a valid index of the collection that is not equal to the
/// `endIndex` property.
subscript(position: Index) -> _Element { get set }
subscript(position: Index) -> Element { get set }
/// Accesses a contiguous subrange of the collection's elements.
///