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

..03-May-2022-

scripts/H30-Jun-2017-

.codecov.ymlH A D30-Jun-2017763

.gitignoreH A D30-Jun-20178

.travis.ymlH A D30-Jun-2017350

CHANGELOG.mdH A D30-Jun-2017529

MakefileH A D30-Jun-20172 KiB

README.mdH A D30-Jun-2017771

benchmarks_test.goH A D30-Jun-20171.8 KiB

error.goH A D30-Jun-201710 KiB

error_test.goH A D30-Jun-201710.8 KiB

example_test.goH A D30-Jun-20172.1 KiB

glide.lockH A D30-Jun-2017571

glide.yamlH A D30-Jun-2017159

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.org/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.org/uber-go/multierr
23[cov]: https://codecov.io/gh/uber-go/multierr
24