This source emits a single element repeatedly. It never completes, if you want the stream to be finite you will need to limit it by combining with another operator
See also:
*@ref:[`single`](single.md) Stream a single object once.
*@ref:[`tick`](tick.md) A periodical repetition of an arbitrary object.
*@ref:[`cycle`](cycle.md) Stream iterator in cycled manner.
## Example
This example prints the first 4 elements emitted by `Source.repeat`.