美文网首页
just运算

just运算

作者: 幸运的小强本人 | 来源:发表于2016-03-15 15:47 被阅读13次

just图标说明如下:

Just
/**
Returns an observable sequence that contains a single element.
seealso: http://reactivex.io/documentation/operators/just.html
*/
public static func just(element: E)->Observable<E> {
    return Just(element: element)
}

class Just<Element>: Producer<Element> {
    private let _element: Element

    init(element: Element) {
        _element = element
    }

    override func subscribe<O: ObserverType where O.E == Element>(observer: O)->Disposable {
        observer.on(.Next(_element))
        observer.on(.Completed)
        return NopDisposable.instance
    }
}

相关文章

  • just运算

    just图标说明如下:

  • just just game

    我止损了,你们随意 人少,连刚开盘的都没人参加,都在看最后的那个大奖,正循环不咋样 和just game完全一样的...

  • 2017-06-15

    Just hate Just fight Just leave me alone Don't want to pr...

  • 左灯右行

    “something just like this” “something just like this” “好像...

  • 又想和你扯淡了

    "thefuture is not just tomorrow,it is just in the heart o...

  • 5.28/Bravo Brava

    Just today ,Just an ordinary day ,started with a totally ...

  • 使用现在完成时需注意的事项

    1 just now 和just 的区别两者皆可译成“方才,刚刚”,但just now 一般用于过去时,而just...

  • 2019-04-26

    just a test!ddddddd ddddddddddddddddd just a test5!

  • Just 生病 Just贪玩

    小柳 这大半年,过的是和以往完全不同的生活。 此前的十多年,悲伤愤懑、无处宣泄,琐事伤害了我,身边的人坑我太多。选...

  • 第八周-前端性能优化(二)

    JIT(Just In Time) • A crash course in just-in-time (JIT) ...

网友评论

      本文标题:just运算

      本文链接:https://www.haomeiwen.com/subject/wgcqlttx.html