RxSwift/RxTests/RxSwiftTests/TestImplementations/Observable+Extensions.swift

14 lines
226 B
Swift

//
// Observable+Extensions.swift
// RxTests
//
// Created by Krunoslav Zaher on 6/4/15.
//
//
import Foundation
import RxSwift
public func == <T>(lhs: Observable<T>, rhs: Observable<T>) -> Bool {
return lhs === rhs
}