Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:27:53 +02:00
parent a2cd6db3b0
commit 0ab4b3dbc5
26 changed files with 64 additions and 62 deletions

View File

@ -1,14 +1,14 @@
---
title: every
tags: list,function,intermediate
tags: list,intermediate
---
Returns `True` if the provided function returns `True` for every element in the list, `False` otherwise.
Checks if the provided function returns `True` for every element in the list.
- Use `all()` in combination with `map` and `fn` to check if `fn` returns `True` for all elements in the list.
- Use `all()` in combination with `map()` and `fn` to check if `fn` returns `True` for all elements in the list.
```py
def every(lst, fn=lambda x: x):
def every(lst, fn = lambda x: x):
return all(map(fn, lst))
```