| 123456789101112131415161718192021 |
- //
- // algorithm.h
- // stream
- //
- // Created by Sam Jaffe on 4/2/23.
- //
- #pragma once
- #include <stream/algorithm/all_of.h>
- #include <stream/algorithm/any_of.h>
- #include <stream/algorithm/count.h>
- #include <stream/algorithm/count_if.h>
- #include <stream/algorithm/equal.h>
- #include <stream/algorithm/fold.h>
- #include <stream/algorithm/for_each.h>
- #include <stream/algorithm/max.h>
- #include <stream/algorithm/min.h>
- #include <stream/algorithm/minmax.h>
- #include <stream/algorithm/none_of.h>
- #include <stream/algorithm/size.h>
|