1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
Itertools-num
=============
Extra iterator adaptors, functions and macros.
Please read the `API documentation here`__
__ https://docs.rs/itertools-num/
|crates|_
.. |crates| image:: http://meritbadge.herokuapp.com/itertools-num
.. _crates: https://crates.io/crates/itertools-num
How to use with cargo::
[dependencies]
itertools-num = "0.1"
How to use in your crate:
.. code:: rust
extern crate itertools_num;
How to contribute:
- Fix a bug or implement a new thing
- Include tests for your new feature, preferably a quickcheck test
- Make a Pull Request
Recent Changes
--------------
- 0.1.3
- Bump quickcheck dev-dependency by @ignatenkobrain
- 0.1.2
- Bump dependencies, in particular itertools
- 0.1.1
- Add ``.cumsum()``.
- 0.1.0
- Initial release
License
-------
Dual-licensed to be compatible with the Rust project.
Licensed under the Apache License, Version 2.0
http://www.apache.org/licenses/LICENSE-2.0 or the MIT license
http://opensource.org/licenses/MIT, at your
option. This file may not be copied, modified, or distributed
except according to those terms.
|