-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
Iter | ||
---- | ||
|
||
.. py:function:: pydu.iter.first(iterable) | ||
Get the first item in the iterable. | ||
|
||
>>> from pydu.iter import first | ||
>>> first([1, 2]) | ||
1 | ||
|
||
|
||
.. py:function:: pydu.iter.last(iterable) | ||
Get the last item in the iterable. | ||
Warning, this can be slow due to iter step by step to last one. | ||
|
||
>>> from pydu.iter import last | ||
>>> last([1, 2]) | ||
2 | ||
|
||
|
||
.. py:function:: pydu.iter.all(iterable, predicate) | ||
Returns True if all elements in the given iterable are True for the | ||
given predicate function. | ||
|
||
>>> from pydu.iter import all | ||
>>> all([0, 1, 2], lambda x: x+1) | ||
True | ||
|
||
|
||
.. py:function:: pydu.iter.any(iterable) | ||
Returns True if any element in the given iterable is True for the | ||
given predicate function. | ||
|
||
>>> from pydu.iter import any | ||
>>> any([-1, -1, 0], lambda x: x+1) | ||
True | ||
|
||
|
||
.. py:function:: pydu.iter.join(iterable, separator='') | ||
Join each item of iterable to string. | ||
|
||
>>> from pydu.iter import join | ||
>>> join([1, '2', 3], separator=',') | ||
'1,2,3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters