summaryrefslogtreecommitdiff
path: root/src/mongo/base/string_data_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-44049 constexpr StringData(ptr,len) constructorBilly Donahue2020-05-081-0/+30
|
* SERVER-32434 operator<<(ostream,StringData)Billy Donahue2019-07-111-0/+39
| | | | use boost::string_view for operator<<
* SERVER-41071 Replace NULL and 0 with nullptrA. Jesse Jiryu Davis2019-06-141-3/+3
|
* SERVER-40389 small tweaks to third_party/fmt & related.Billy Donahue2019-04-081-0/+6
| | | | | | | | | | | Add an option to scons: --use-system-fmt import.sh: use the upstream libfmt github repo. StringData fmt interop noexcept for to_string_view(StringData) hook noexcept for StringData's rawData() and size() add fmt to THIRD-PARTY-NOTICES + markdown tweaks import the fmt LICENSE.rst update fmt lib revision
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+16
|
* SERVER-23990 move StringData hashing to StringData::ComparatorInterfaceDavid Storch2016-07-191-10/+13
| | | | This allows strings to be hashed in a collation-aware fashion.
* SERVER-24651 Add and use string data literalsJason Carey2016-06-171-13/+21
| | | | Replace StringData("foo", StringData::LiteralTag()) with "foo"_sd
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-269/+259
|
* SERVER-12157: fix build on Linux 32-bit and old version(s) of g++.Davide Italiano2014-01-051-8/+8
|
* SERVER-12157: fix 32-bit compileEliot Horowitz2014-01-041-4/+4
|
* SERVER-12157 Replace implementation of StringMapDefaultHash::operator()Davide Italiano2014-01-031-0/+36
| | | | | with Murmur3. This has proven to be more effective in terms of speed and collision rates.
* SERVER-8886 Final set of license exceptions for OpenSSLIan Whalen2013-12-101-0/+12
|
* Added const_iterator to StringData. Supports all operations that a const ↵Eric Daniels2013-07-291-0/+45
| | | | | | char* can support Signed-off-by: Andrew Morrow <acm@10gen.com>
* Add StringData::rfind(char) const method.Andy Schwerin2013-03-111-0/+16
|
* Fix StringData::substr with single argumentMathias Stearn2013-01-091-10/+37
| | | | Original version had an overflow bug
* Add startsWith and endsWith predicates to StringData.Andy Schwerin2013-01-091-0/+33
|
* SERVER-6399 Allowed creation of empty string data's.Alberto Lerner2012-12-111-0/+13
|
* SERVER-7886 - more methods on StringData to match std::stringEliot Horowitz2012-12-101-0/+46
| | | | - raw buffer access is now rawData(), which should be used sparingly
* SERVER-7172 Added comparison support in StringData.Alberto Lerner2012-11-151-0/+92