Versions in this module Expand all Collapse all v1 v1.0.1 Jan 23, 2026 Changes in this version + func Fail[T any](err error) _Result[T] + func Success[T any](val T) _Result[T] v1.0.0 Jan 21, 2026 Changes in this version + type Result chan _Result[T] + func Do[T any](ctx context.Context, action func(ctx context.Context) (T, error)) Result[T] + type Sequence Result[T] + func Stream[T any](ctx context.Context, step func(ctx context.Context) (T, error, bool)) Sequence[T]