Upgrade version of RxSwift, RxCocoa, Alamofire.

This commit is contained in:
Qiu Yuzhou
2018-05-08 11:45:43 +08:00
parent 99595faafa
commit ce00520dfd
155 changed files with 6172 additions and 5740 deletions

View File

@ -80,15 +80,11 @@ struct Bag<T> : CustomDebugStringConvertible {
}
if _pairs.count < arrayDictionaryMaxSize {
_pairs.append(key: key, value: element)
_pairs.append((key: key, value: element))
return key
}
if _dictionary == nil {
_dictionary = [:]
}
_dictionary![key] = element
_dictionary = [key: element]
return key
}