• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

tools/H14-Sep-2020-

.codecov.ymlH A D14-Sep-2020763

.gitignoreH A D14-Sep-202034

.travis.ymlH A D14-Sep-2020264

CHANGELOG.mdH A D14-Sep-20201 KiB

MakefileH A D14-Sep-2020981

README.mdH A D14-Sep-2020771

benchmarks_test.goH A D14-Sep-20201.8 KiB

error.goH A D14-Sep-202011.4 KiB

error_test.goH A D14-Sep-202012.2 KiB

example_test.goH A D14-Sep-20202.5 KiB

glide.yamlH A D14-Sep-2020159

go.modH A D14-Sep-2020113

go.sumH A D14-Sep-2020934

go113.goH A D14-Sep-20201.8 KiB

go113_test.goH A D14-Sep-20203.8 KiB

README.md

1# multierr [![GoDoc][doc-img]][doc] [![Build Status][ci-img]][ci] [![Coverage Status][cov-img]][cov]
2
3`multierr` allows combining one or more Go `error`s together.
4
5## Installation
6
7    go get -u go.uber.org/multierr
8
9## Status
10
11Stable: No breaking changes will be made before 2.0.
12
13-------------------------------------------------------------------------------
14
15Released under the [MIT License].
16
17[MIT License]: LICENSE.txt
18[doc-img]: https://godoc.org/go.uber.org/multierr?status.svg
19[doc]: https://godoc.org/go.uber.org/multierr
20[ci-img]: https://travis-ci.com/uber-go/multierr.svg?branch=master
21[cov-img]: https://codecov.io/gh/uber-go/multierr/branch/master/graph/badge.svg
22[ci]: https://travis-ci.com/uber-go/multierr
23[cov]: https://codecov.io/gh/uber-go/multierr
24