Commit bd549d50 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #455 from molpopgen/cpp_copy

Cpp copy added to libcpp/algorithm.pxd
parents 01b47caa 3053374b
......@@ -26,3 +26,7 @@ cdef extern from "<algorithm>" namespace "std" nogil:
void sort_heap[Iter](Iter first, Iter last)
void sort_heap[Iter, Compare](Iter first, Iter last, Compare comp)
# Copy
OutputIter copy[InputIter,OutputIter](InputIter,InputIter,OutputIter)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment