JuliaInterop / libcxxwrap-julia

C++ library for backing CxxWrap.jl
Other
85 stars 43 forks source link

Add support for common STL algorithms #171

Closed PraneethJain closed 4 months ago

PraneethJain commented 4 months ago

https://github.com/PraneethJain/CxxWrap.jl#stl-algos

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.