markdown Concat_vs_Merge

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Concat_vs_Merge相关的知识,希望对你有一定的参考价值。

## Concat vs Merge
 These two operators will used to combine two or more Observables into a single Observable.
### Concat:
Concat operator combines output of two or more Observables into a single Observable. Concat operator always maintains the sequential execution without interleaving the emissions. So the first Observables completes its emission before the second starts and so forth if there are more observables.

Let’s say we have two separate Observables that emits Male and Female users. When Concat operator is used, the both Observables will be combined and act as single Observable.

### Merge:
Merge also merges multiple Observables into a single Observable but it won’t maintain the sequential execution.

以上是关于markdown Concat_vs_Merge的主要内容,如果未能解决你的问题,请参考以下文章

markdown转换为图片

转换rst到markdown总结

markdown [Markdown HowTo]作为Markdown语法的秘籍

python markdown干啥用的

markdown前端渲染

如何用markdown生成目录