Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ctype functions to IntlChar's "see also" section and vice versa #2725

Merged
merged 1 commit into from
Sep 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-alnum.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ The string foo!#$bar does not consist of all letters or digits.
<member><function>ctype_alpha</function></member>
<member><function>ctype_digit</function></member>
<member><function>setlocale</function></member>
<member><function>IntlChar::isalnum</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-alpha.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ The string arf12 does not consist of all letters.
<member><function>ctype_upper</function></member>
<member><function>ctype_lower</function></member>
<member><function>setlocale</function></member>
<member><function>IntlChar::isalpha</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-cntrl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ The string 'string2' does not consist of all control characters.
<para>
<simplelist>
<member><function>ctype_print</function></member>
<member><function>IntlChar::iscntrl</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-digit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ is_numeric($integer); // true
<member><function>is_numeric</function></member>
<member><function>is_int</function></member>
<member><function>is_string</function></member>
<member><function>IntlChar::isdigit</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-graph.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ The string 'string3' consists of all (visibly) printable characters.
<member><function>ctype_alnum</function></member>
<member><function>ctype_print</function></member>
<member><function>ctype_punct</function></member>
<member><function>IntlChar::isgraph</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-lower.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ The string QASsdks does not consist of all lowercase letters.
<member><function>ctype_alpha</function></member>
<member><function>ctype_upper</function></member>
<member><function>setlocale</function></member>
<member><function>IntlChar::islower</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-print.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ The string 'string3' consists of all printable characters.
<member><function>ctype_cntrl</function></member>
<member><function>ctype_graph</function></member>
<member><function>ctype_punct</function></member>
<member><function>IntlChar::isprint</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-punct.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ The string *&$() consists of all punctuation.
<simplelist>
<member><function>ctype_cntrl</function></member>
<member><function>ctype_graph</function></member>
<member><function>IntlChar::ispunct</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-space.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ The string 'string3' contains non-whitespace characters.
<member><function>ctype_cntrl</function></member>
<member><function>ctype_graph</function></member>
<member><function>ctype_punct</function></member>
<member><function>IntlChar::isspace</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-upper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ The string akwSKWsm does not consist of all uppercase letters.
<member><function>ctype_alpha</function></member>
<member><function>ctype_lower</function></member>
<member><function>setlocale</function></member>
<member><function>IntlChar::isupper</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/ctype/functions/ctype-xdigit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ The string ab12bc99 consists of all hexadecimal digits.
<para>
<simplelist>
<member><function>ctype_digit</function></member>
<member><function>IntlChar::isxdigit</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/isalnum.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ bool(false)
<simplelist>
<member><function>IntlChar::isalpha</function></member>
<member><function>IntlChar::isdigit</function></member>
<member><function>ctype_alnum</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/isalpha.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ bool(false)
<simplelist>
<member><function>IntlChar::isalnum</function></member>
<member><function>IntlChar::isdigit</function></member>
<member><function>ctype_alpha</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/iscntrl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ bool(true)
<simplelist>
<member><function>IntlChar::isprint</function></member>
<member><constant>IntlChar::PROPERTY_DEFAULT_IGNORABLE_CODE_POINT</constant></member>
<member><function>ctype_cntrl</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/isdigit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ bool(false)
<member><function>IntlChar::isalpha</function></member>
<member><function>IntlChar::isalnum</function></member>
<member><function>IntlChar::isxdigit</function></member>
<member><function>ctype_digit</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
9 changes: 9 additions & 0 deletions reference/intl/intlchar/isgraph.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ bool(false)
</example>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>ctype_graph</function></member>
</simplelist>
</para>
</refsect1>

</refentry>
<!-- Keep this comment at the end of the file
Local variables:
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/islower.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ bool(false)
<member><function>IntlChar::tolower</function></member>
<member><function>IntlChar::toupper</function></member>
<member><constant>IntlChar::PROPERTY_LOWERCASE</constant></member>
<member><function>ctype_lower</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/isprint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ bool(false)
<simplelist>
<member><function>IntlChar::iscntrl</function></member>
<member><constant>IntlChar::PROPERTY_DEFAULT_IGNORABLE_CODE_POINT</constant></member>
<member><function>ctype_print</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
9 changes: 9 additions & 0 deletions reference/intl/intlchar/ispunct.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ bool(false)
</example>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>ctype_punct</function></member>
</simplelist>
</para>
</refsect1>

</refentry>
<!-- Keep this comment at the end of the file
Local variables:
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/isspace.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ bool(true)
<member><function>IntlChar::isJavaSpaceChar</function></member>
<member><function>IntlChar::isWhitespace</function></member>
<member><function>IntlChar::isUWhiteSpace</function></member>
<member><function>ctype_space</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/isupper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ bool(false)
<member><function>IntlChar::tolower</function></member>
<member><function>IntlChar::toupper</function></member>
<member><constant>IntlChar::PROPERTY_UPPERCASE</constant></member>
<member><function>ctype_upper</function></member>
</simplelist>
</para>
</refsect1>
Expand Down
1 change: 1 addition & 0 deletions reference/intl/intlchar/isxdigit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ $isASCIIHexadecimal = IntlChar::ord($codepoint) <= 0x7F && IntlChar::isxdigit($c
<para>
<simplelist>
<member><function>IntlChar::isdigit</function></member>
<member><function>ctype_xdigit</function></member>
</simplelist>
</para>
</refsect1>
Expand Down