/** * Returns the full titlecase mapping of the given string * * The `v1` refers to the version of the options struct, which may change as we add more options * * See the [Rust documentation for `titlecase_segment`](https://docs.rs/icu/latest/icu/casemap/struct.TitlecaseMapper.html#method.titlecase_segment) for more information.
*/ template<typename W> diplomat::result<std::monostate, ICU4XError> titlecase_segment_v1_to_writeable(const std::string_view s, const ICU4XLocale& locale, ICU4XTitlecaseOptionsV1 options, W& write) const;
/** * Returns the full titlecase mapping of the given string * * The `v1` refers to the version of the options struct, which may change as we add more options * * See the [Rust documentation for `titlecase_segment`](https://docs.rs/icu/latest/icu/casemap/struct.TitlecaseMapper.html#method.titlecase_segment) for more information.
*/
diplomat::result<std::string, ICU4XError> titlecase_segment_v1(const std::string_view s, const ICU4XLocale& locale, ICU4XTitlecaseOptionsV1 options) const; inlineconst capi::ICU4XTitlecaseMapper* AsFFI() const { return this->inner.get(); } inline capi::ICU4XTitlecaseMapper* AsFFIMut() { return this->inner.get(); } inlineexplicit ICU4XTitlecaseMapper(capi::ICU4XTitlecaseMapper* i) : inner(i) {}
ICU4XTitlecaseMapper() = default;
ICU4XTitlecaseMapper(ICU4XTitlecaseMapper&&) noexcept = default;
ICU4XTitlecaseMapper& operator=(ICU4XTitlecaseMapper&& other) noexcept = default; private:
std::unique_ptr<capi::ICU4XTitlecaseMapper, ICU4XTitlecaseMapperDeleter> inner;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.