Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 759 Bytes

File metadata and controls

24 lines (14 loc) · 759 Bytes

{% if book.isPdf %}

startWith

{% else %}

{% endif %}

Prepends a sequence of values to an observable sequence with an optional scheduler and an argument list of values to prepend.

Arguments

  1. [scheduler] (Scheduler): Scheduler to execute the function.
  2. args (arguments): Values to prepend to the observable sequence.

Returns

(Observable): The source sequence prepended with the specified values.

Example