Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Latest commit

 

History

History
40 lines (31 loc) · 2.45 KB

cp.rx.go.Given.md

File metadata and controls

40 lines (31 loc) · 2.45 KB

docs » cp.rx.go.Given


A Statement that will execute the provided resolvable values. This will resolve the provided values into Observables and pass on the first result of each to the next stage as individual parameters. This will continue until one of the Observables has completed, at which point other results from values are ignored.

Submodules

API Overview

  • Constructors - API calls which return an object, typically one that offers API methods
  • Given
  • Methods - API calls which can only be made on an object returned by a constructor
  • Then

API Documentation

Constructors

Signature cp.rx.go.Given(...) -> Given
Type Constructor
Description Begins the definition of a Given Statement.
Parameters
  • ... - the list of resolvable values to evaluate.
Returns
  • A new Given Statement instance.

Methods

Signature cp.rx.go.Given:Then(...) -> Given.Then
Type Method
Description Call this to define what will happen once the Given values resolve successfully.
Parameters
  • ... - The list of resolveable values to process for each Given result.
Returns