From c88c7cd006b06b88ca04b287d5241868b2d55c24 Mon Sep 17 00:00:00 2001 From: Archivist Date: Mon, 14 Sep 2020 18:17:08 +0000 Subject: [PATCH] Add 'Works in progress' --- Works-in-progress.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Works-in-progress.md diff --git a/Works-in-progress.md b/Works-in-progress.md new file mode 100644 index 0000000..f3e914f --- /dev/null +++ b/Works-in-progress.md @@ -0,0 +1,21 @@ + +- [ ] Algorithm library + - Non allocating + - [ ] `sort` + - [ ] `stable_sort` + - [ ] `partition` + - [ ] `stable_partition` + - [ ] `minmax` + - [ ] `minmax_element` + - [ ] `is_permutation` + - [ ] `next_permutation` + - [ ] `prev_permutation` + - [ ] `make_heap` + - [ ] `push_heap` + - [ ] `lower_bound` + - [ ] `upper_bound` + - [ ] `binary_search` + - [ ] `includes` + - [ ] `equal` + - [ ] `lexicographical_compare` (using 3-way comparisons) + - [ ] `includes` \ No newline at end of file