You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

47 lines
1.5 KiB

//
// mapTo.swift
// RxSwiftExt
//
// Created by Marin Todorov on 4/12/16.
// Copyright © 2016 RxSwift Community. All rights reserved.
//
import Foundation
import RxSwift
extension ObservableType {
/**
Returns an observable sequence containing as many elements as its input but all of them are the constant provided as a parameter
- parameter value: A constant that each element of the input sequence is being replaced with
- returns: An observable sequence containing the values `value` provided as a parameter
*/
public func mapTo<Result>(_ value: Result) -> Observable<Result> {
return map { _ in value }
}
}
extension PrimitiveSequence where Trait == SingleTrait {
/**
Returns a Single which success event is mapped to constant provided as a parameter
- parameter value: A constant that element of the input sequence is being replaced with
- returns: A Single containing the value `value` provided as a parameter in case of success
*/
public func mapTo<Result>(_ value: Result) -> Single<Result> {
return map { _ in value }
}
}
extension PrimitiveSequence where Trait == MaybeTrait {
/**
Returns a Maybe which success event is mapped to constant provided as a parameter
- parameter value: A constant that element of the input sequence is being replaced with
- returns: A Maybe containing the value `value` provided as a parameter in case of success
*/
public func mapTo<Result>(_ value: Result) -> Maybe<Result> {
return map { _ in value }
}
}