stdlib: underscore-prefix String.core

Swift SVN r20411
This commit is contained in:
Dmitri Hrybenko
2014-07-23 16:28:57 +00:00
parent 7a3e406ed3
commit 766c9816de
14 changed files with 33 additions and 33 deletions

View File

@@ -223,9 +223,9 @@ extension String {
}
public func compare(other : String) -> Int {
return(UnicodeScalarView(core).compare(UnicodeScalarView(other.core)))
return(UnicodeScalarView(_core).compare(UnicodeScalarView(other._core)))
}
public var unicodeScalars : UnicodeScalarView {
return UnicodeScalarView(core)
return UnicodeScalarView(_core)
}
}