ElementAt Operator

February 25, 2020 ยท View on GitHub

Overview

Emit only item n emitted by an Observable.

Example

observable := rxgo.Just(0, 1, 2, 3, 4)().ElementAt(2)

Output:

2

Options

  • WithBufferedChannel

  • WithContext

  • WithObservationStrategy

  • WithErrorStrategy

  • WithPublishStrategy

Contents

  1. 1Overview
  2. 2Example
  3. 3Options