Added support for std::lower_bound, std::upper_bound, std::binary_search, std::fill, and std::list::sort to the appropriate containers.
Removed std::fill from std::vector, std::valarray and std::deque as they already work on the Julia side.
Similarly, sort, min, max, etc. already work on the Julia side due to the correct parent types being assigned.
https://github.com/PraneethJain/CxxWrap.jl#stl-algos
Added support for
std::lower_bound
,std::upper_bound
,std::binary_search
,std::fill
, andstd::list::sort
to the appropriate containers.Removed
std::fill
fromstd::vector
,std::valarray
andstd::deque
as they already work on the Julia side. Similarly, sort, min, max, etc. already work on the Julia side due to the correct parent types being assigned.