General Purpose library for Freestanding C++ and POSIX systems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
474 B

#pragma once
#include "gp_config.hpp"
#include "gp/algorithms/move.hpp"
#include "gp/functional/identity.hpp"
namespace gp{
template<typename it, typename transform>
auto&& min_of(it beg, it end, transform fn = identity) {
gp_config::assertion(beg != end, "min_of provided with empty range");
auto fn_v = fn(*beg);
++beg;
while(beg != end) {
auto n_fn_v = fn(*beg);
if(n_fn_v < fn_v) {
fn_v = n_fn_v;
}
++beg;
}
return gp::move(fn_v);
}
}