| 501 | |
| 502 | template <typename Container> |
| 503 | StringList StringList::from(Container const& m) { |
| 504 | return StringList(m.begin(), m.end()); |
| 505 | } |
| 506 | |
| 507 | template <typename Filter> |
| 508 | StringList StringList::filtered(Filter&& filter) const { |
nothing calls this directly
no test coverage detected