| 567 | template <typename ContainerIn, |
| 568 | typename T = typename ContainerIn::value_type> |
| 569 | auto run_length_encode(const ContainerIn& xs) |
| 570 | { |
| 571 | return run_length_encode_by(is_equal<T>, xs); |
| 572 | } |
| 573 | |
| 574 | // API search type: run_length_decode : [(Int, a)] -> [a] |
| 575 | // fwd bind count: 0 |
no test coverage detected