From 0d6486c40282772bab232bf393c5e6fad9533a0e Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Mon, 21 Sep 2015 02:40:33 -0700 Subject: [PATCH] exposing remap docs --- docs/iterutils.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/iterutils.rst b/docs/iterutils.rst index de434bc..58b47a8 100644 --- a/docs/iterutils.rst +++ b/docs/iterutils.rst @@ -23,6 +23,17 @@ present in the standard library. .. autofunction:: unique .. autofunction:: unique_iter +Nested +------ + +Nested structures are common. Virtually all compact Python iterative +interaction is flat (list comprehensions, map/filter, generator +expressions, itertools, even other iterutils). These functions make +working with nested iterables and other containers as succinct and +powerful as Python itself. + +.. autofunction:: remap + Numeric -------