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

..03-May-2022-

.codecov.ymlH A D24-Feb-2020763

.gitignoreH A D24-Feb-202034

.travis.ymlH A D24-Feb-2020337

CHANGELOG.mdH A D24-Feb-2020965

MakefileH A D24-Feb-2020945

README.mdH A D24-Feb-2020771

benchmarks_test.goH A D24-Feb-20201.8 KiB

error.goH A D24-Feb-202011.4 KiB

error_test.goH A D24-Feb-202012.2 KiB

example_test.goH A D24-Feb-20202.5 KiB

glide.yamlH A D24-Feb-2020159

go.modH A D24-Feb-2020324

go.sumH A D24-Feb-20204.2 KiB

go113.goH A D24-Feb-20201.8 KiB

go113_test.goH A D24-Feb-20203.8 KiB

tools_test.goH A D24-Feb-20201.3 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