I\'m using RxSwift 2.0.0-beta
How can I combine 2 observables of different types in a zip like manner?
// This works [just(1), just(1)].zip { intElement
This works for me. I tested it in Xcode7, RxSwift-2.0.0-beta
zip(just(1), just("!")) { (a, b) in return (a,b) }