Open atermenji opened 8 years ago
In Swift 2.2 String is not SequenceType anymore. One should try to use String.CharacterView instead. E.g.
String
SequenceType
String.CharacterView
public func endWith(item: String) -> EndWith<String.CharacterView, Character>
In Swift 2.2
String
is notSequenceType
anymore. One should try to useString.CharacterView
instead. E.g.