Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 351 Bytes

errors.md

File metadata and controls

28 lines (19 loc) · 351 Bytes

Errors Operator

Overview

Return the eventual Observable errors.

This method is blocking.

Example

errs := rxgo.Just(
	errors.New("foo"),
	errors.New("bar"),
	errors.New("baz"),
)().Errors(rxgo.WithErrorStrategy(rxgo.Continue))
fmt.Println(errs)

Output:

[foo bar baz]

Options