Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

28 lines (17 loc) · 1.17 KB

Contributions guide

Please follow this guide when contributing new features to this library.

Accepted Contributions

This crate is currently only accepting new functionality added to the TryIteratorExt trait which is aligned with existing functions on any of the following third party types:

A good list of missing adapters can be found in Yoshua Wuyts post on Fallible Iterator Adapters.

Testing

Functions should be sufficiently simple that they can be verified via inspection along with a simple doctest which also serves as documentation.

If the functionality is complex consider adding additional secondary tests.

Submitting a pull request

Before submitting a PR please run cargo test and cargo check fixing any errors that come up. Thank you for your contributions!