i know that equal_range(k) gets me range of values:
starting with k or element greater than k or end and
finishing with element greater than k or end.
i wanna modify this behaviour to give me only range of values :
starting with k or end
finishing with element greate than k or end
this is to reach result that if the range is not present in container then return iterators to end so that i could compare them to end of container.
how can i do this???
i tried to use range function ?
but when i pass make_tuple forming composite key to lower_bound it gives me huge errors so that i give up