algorithm.h 524 B

123456789101112131415161718192021
  1. //
  2. // algorithm.h
  3. // stream
  4. //
  5. // Created by Sam Jaffe on 4/2/23.
  6. //
  7. #pragma once
  8. #include <stream/algorithm/all_of.h>
  9. #include <stream/algorithm/any_of.h>
  10. #include <stream/algorithm/count.h>
  11. #include <stream/algorithm/count_if.h>
  12. #include <stream/algorithm/equal.h>
  13. #include <stream/algorithm/fold.h>
  14. #include <stream/algorithm/for_each.h>
  15. #include <stream/algorithm/max.h>
  16. #include <stream/algorithm/min.h>
  17. #include <stream/algorithm/minmax.h>
  18. #include <stream/algorithm/none_of.h>
  19. #include <stream/algorithm/size.h>