ICU-23004 doc usually-deduced tparam

This commit is contained in:
Markus Scherer 2025-03-10 10:07:59 -07:00
parent 869ccdaefb
commit 315bb1e3c1

View file

@ -1359,6 +1359,10 @@ private:
*
* @tparam CP32 Code point type: UChar32 (=int32_t) or char32_t or uint32_t
* @tparam behavior How to handle ill-formed Unicode strings
* @tparam UnitIter Can usually be omitted/deduced:
* An iterator (often a pointer) that returns a code unit type:
* UTF-8: char or char8_t or uint8_t;
* UTF-16: char16_t or uint16_t or (on Windows) wchar_t
* @param start start code unit iterator
* @param p current-position code unit iterator
* @param limit limit (exclusive-end) code unit iterator
@ -1376,6 +1380,10 @@ auto utfIterator(UnitIter start, UnitIter p, UnitIter limit) {
*
* @tparam CP32 Code point type: UChar32 (=int32_t) or char32_t or uint32_t
* @tparam behavior How to handle ill-formed Unicode strings
* @tparam UnitIter Can usually be omitted/deduced:
* An iterator (often a pointer) that returns a code unit type:
* UTF-8: char or char8_t or uint8_t;
* UTF-16: char16_t or uint16_t or (on Windows) wchar_t
* @param p start and current-position code unit iterator
* @param limit limit (exclusive-end) code unit iterator
* @return a UTFIterator<CP32, behavior, UnitIter>
@ -1398,6 +1406,10 @@ auto utfIterator(UnitIter p, UnitIter limit) {
*
* @tparam CP32 Code point type: UChar32 (=int32_t) or char32_t or uint32_t
* @tparam behavior How to handle ill-formed Unicode strings
* @tparam UnitIter Can usually be omitted/deduced:
* An iterator (often a pointer) that returns a code unit type:
* UTF-8: char or char8_t or uint8_t;
* UTF-16: char16_t or uint16_t or (on Windows) wchar_t
* @param p code unit iterator
* @return a UTFIterator<CP32, behavior, UnitIter>
* for the given code unit iterator or character pointer
@ -1412,6 +1424,7 @@ auto utfIterator(UnitIter p) {
* @tparam CP32 Code point type: UChar32 (=int32_t) or char32_t or uint32_t;
* should be signed if U_BEHAVIOR_NEGATIVE
* @tparam behavior How to handle ill-formed Unicode strings
* @tparam StringView Can usually be omitted/deduced: A std::basic_string_view<Unit>
* @param s input string_view
* @return a UTFStringCodePoints<CP32, behavior, Unit>
* for the given std::basic_string_view<Unit>,
@ -1884,6 +1897,10 @@ private:
/**
* @tparam CP32 Code point type: UChar32 (=int32_t) or char32_t or uint32_t
* @tparam UnitIter Can usually be omitted/deduced:
* An iterator (often a pointer) that returns a code unit type:
* UTF-8: char or char8_t or uint8_t;
* UTF-16: char16_t or uint16_t or (on Windows) wchar_t
* @param iter code unit iterator
* @return an UnsafeUTFIterator<CP32, UnitIter>
* for the given code unit iterator or character pointer
@ -1896,6 +1913,7 @@ auto unsafeUTFIterator(UnitIter iter) {
/**
* @tparam CP32 Code point type: UChar32 (=int32_t) or char32_t or uint32_t
* @tparam StringView Can usually be omitted/deduced: A std::basic_string_view<Unit>
* @param s input string_view
* @return an UnsafeUTFStringCodePoints<CP32, Unit>
* for the given std::basic_string_view<Unit>,