13 template<concepts::InputIterator It, concepts::SentinelFor<It> Sent, concepts::InputIterator Jt,
14 concepts::SentinelFor<Jt> Jent,
typename Comp = function::Compare,
typename Proj = function::Identity,
15 typename Jroj = function::Identity>
17 constexpr auto operator()(It it, Sent ed, Jt jt, Jent fd, Comp comp = {}, Proj
proj = {},
18 Jroj jroj = {})
const {
20 for (; it != ed && jt != fd; ++it, ++jt) {
26 return static_cast<Result>((jt == fd) <=> (it == ed));
17 constexpr auto operator()(It it, Sent ed, Jt jt, Jent fd, Comp comp = {}, Proj
proj = {}, {
…}
29 template<concepts::InputContainer Con, concepts::InputContainer Jon,
typename Comp = function::Compare,
30 typename Proj = function::Identity,
typename Jroj = function::Identity>
31 requires(concepts::IndirectStrictPartialOrder<Comp, meta::Projected<meta::ContainerIterator<Con>, Proj>,
32 meta::Projected<meta::ContainerIterator<Jon>, Jroj>>)
33 constexpr auto operator()(Con&& con, Jon&& jon, Comp comp = {}, Proj
proj = {}, Jroj jroj = {})
const {
33 constexpr auto operator()(Con&& con, Jon&& jon, Comp comp = {}, Proj
proj = {}, Jroj jroj = {})
const {
…}