dask.bag.Bag.all

Contents

dask.bag.Bag.all#

Bag.all(split_every=None)[source]#

Are all elements truthy?

Examples

>>> import dask.bag as db
>>> bool_bag = db.from_sequence([True, True, False])
>>> bool_bag.all().compute()
False