diff --git a/docs/userguide/strings/index.md b/docs/userguide/strings/index.md index 100ca177d522..820e26d5cf23 100644 --- a/docs/userguide/strings/index.md +++ b/docs/userguide/strings/index.md @@ -456,6 +456,76 @@ modification and is useful for operations on text that may have associated meta-data (e.g., styled text), especially in the Transliterator API. UnicodeString implements Replaceable. +UnicodeString can be used together with standard library algorithms and containers: + +```c++ +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +// Output all strings in this container to this stream. +template