PMDK C++ bindings
1.6.1
This is the C++ bindings documentation for PMDK's libpmemobj.
|
String container with std::basic_string compatible interface. More...
#include <algorithm>
#include <limits>
#include <string>
#include <libpmemobj++/detail/common.hpp>
#include <libpmemobj++/detail/iterator_traits.hpp>
#include <libpmemobj++/detail/life.hpp>
#include <libpmemobj++/experimental/array.hpp>
#include <libpmemobj++/experimental/contiguous_iterator.hpp>
#include <libpmemobj++/experimental/slice.hpp>
#include <libpmemobj++/experimental/vector.hpp>
#include <libpmemobj++/persistent_ptr.hpp>
#include <libpmemobj++/pext.hpp>
#include <libpmemobj++/transaction.hpp>
Go to the source code of this file.
Classes | |
class | pmem::obj::experimental::basic_string< CharT, Traits > |
pmem::obj::experimental::string - EXPERIMENTAL persistent container with std::basic_string compatible interface. More... | |
Functions | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator== (const basic_string< CharT, Traits > &lhs, const basic_string< CharT, Traits > &rhs) |
Non-member equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator!= (const basic_string< CharT, Traits > &lhs, const basic_string< CharT, Traits > &rhs) |
Non-member not equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator< (const basic_string< CharT, Traits > &lhs, const basic_string< CharT, Traits > &rhs) |
Non-member less than operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator<= (const basic_string< CharT, Traits > &lhs, const basic_string< CharT, Traits > &rhs) |
Non-member less or equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator> (const basic_string< CharT, Traits > &lhs, const basic_string< CharT, Traits > &rhs) |
Non-member greater than operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator>= (const basic_string< CharT, Traits > &lhs, const basic_string< CharT, Traits > &rhs) |
Non-member greater or equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator== (const CharT *lhs, const basic_string< CharT, Traits > &rhs) |
Non-member equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator!= (const CharT *lhs, const basic_string< CharT, Traits > &rhs) |
Non-member not equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator< (const CharT *lhs, const basic_string< CharT, Traits > &rhs) |
Non-member less than operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator<= (const CharT *lhs, const basic_string< CharT, Traits > &rhs) |
Non-member less or equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator> (const CharT *lhs, const basic_string< CharT, Traits > &rhs) |
Non-member greater than operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator>= (const CharT *lhs, const basic_string< CharT, Traits > &rhs) |
Non-member greater or equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator== (const basic_string< CharT, Traits > &lhs, const CharT *rhs) |
Non-member equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator!= (const basic_string< CharT, Traits > &lhs, const CharT *rhs) |
Non-member not equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator< (const basic_string< CharT, Traits > &lhs, const CharT *rhs) |
Non-member less than operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator<= (const basic_string< CharT, Traits > &lhs, const CharT *rhs) |
Non-member less or equal operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator> (const basic_string< CharT, Traits > &lhs, const CharT *rhs) |
Non-member greater than operator. | |
template<class CharT , class Traits > | |
bool | pmem::obj::experimental::operator>= (const basic_string< CharT, Traits > &lhs, const CharT *rhs) |
Non-member greater or equal operator. | |
String container with std::basic_string compatible interface.