| 795 | typename alloc |
| 796 | > |
| 797 | const std::basic_string<charT,traits,alloc> left_substr ( |
| 798 | const std::basic_string<charT,traits,alloc>& str, |
| 799 | const std::basic_string<charT,traits,alloc>& delim |
| 800 | ) |
| 801 | { |
| 802 | return str.substr(0,str.find_first_of(delim)); |
| 803 | } |
| 804 | |
| 805 | template < |
| 806 | typename charT, |
no outgoing calls