stdlib: fold Sliceable into CollectionType and de-underscore SubSequence

Swift SVN r29845
This commit is contained in:
Dmitri Hrybenko
2015-07-01 18:31:25 +00:00
parent 3745b46f10
commit 80b1380fe8
12 changed files with 296 additions and 244 deletions

View File

@@ -27,8 +27,8 @@ public func <(
extension String {
/// A collection of [Unicode scalar values](http://www.unicode.org/glossary/#unicode_scalar_value) that
/// encode a `String` .
public struct UnicodeScalarView : Sliceable, SequenceType, _Reflectable,
CustomStringConvertible, CustomDebugStringConvertible, CollectionType {
public struct UnicodeScalarView : CollectionType, _Reflectable,
CustomStringConvertible, CustomDebugStringConvertible {
init(_ _core: _StringCore) {
self._core = _core
}