summaryrefslogtreecommitdiff
path: root/src/string.hh
AgeCommit message (Collapse)Author
2012-11-23small code tweakMaxime Coste
2012-11-23String: add non const front() and back() methodsMaxime Coste
2012-10-16add a _str user defined literal to create StringMaxime Coste
2012-10-11use ByteCount instead of CharCount when we are really counting bytesMaxime Coste
(that is most of the time when we are not concerned with displaying)
2012-10-09add a unicode.hh header for Codepoint related functions, ↵Maxime Coste
s/utf8::Codepoint/Codepoint/
2012-10-08get rid of CharacterMaxime Coste
2012-10-01String and BufferIterator value_type goes back to plain charMaxime Coste
2012-09-30extract is_alpha to string.hhMaxime Coste
2012-08-29Fix escaped whitespace handling in command managerMaxime Coste
2012-08-29remove regex.hh, define Regex directly in string.hhMaxime Coste
2012-08-23use a strongly typed int CharCount for character countsMaxime Coste
2012-06-27Tweak String class, and cleanup usagesMaxime Coste
remove String::clear, add operator=(String&&) add str_to_int(const String&) to replace atoi.
2012-05-30correctly implement std::hash<String>Maxime Coste
2012-05-29Add some string helpers and unit testsMaxime Coste
functions int_to_str(int) and split(const String&, Character), plus corresponding unit tests
2012-04-14Implement our own String class in preparation to encoding support.Maxime Coste
2012-04-14replace std::string references with StringMaxime Coste