@@ -835,7 +835,7 @@ namespace pcs // i.e. "pythonic c++ strings"
835835 *
836836 * Decimal characters are those that can be used to form numbers in
837837 * base 10, e.g. U+0660, ARABIC-INDIC DIGIT ZERO. Formally a decimal
838- * character is a character in the Unicode General Category Nd .
838+ * character is a character in the Unicode General Category �Nd� .
839839 */
840840 [[nodiscard]]
841841 inline const bool isdecimal () const noexcept
@@ -883,7 +883,7 @@ namespace pcs // i.e. "pythonic c++ strings"
883883 * the currently implemented rule is this simpler one:
884884 *
885885 * identifier ::= ID_Start id_continue*
886- * id_continue ::= ID_Start | <decimal number>
886+ * id_continue ::= ID_Start | decimal_number
887887 */
888888 [[nodiscard]]
889889 inline const bool isidentifier () const noexcept
@@ -1654,18 +1654,18 @@ namespace pcs // i.e. "pythonic c++ strings"
16541654 * Line breaks are not included in the resulting list unless keepends is given and true.
16551655 *
16561656 * This method splits on the following line boundaries. In particular, the boundaries are a superset of universal newlines:
1657- * \n Line Feed
1658- * \r Carriage Return
1659- * \r\n Carriage Return + Line Feed
1660- * \v or \x0b Line Tabulation
1661- * \f or \x0c Form Feed
1662- * \x1c File Separator
1663- * \x1d Group Separator
1664- * \x1e Record Separator
1657+ * '\n' Line Feed
1658+ * '\r' Carriage Return
1659+ * ' \r\n' Carriage Return + Line Feed
1660+ * '\v' or ' \x0b' Line Tabulation
1661+ * '\f' or ' \x0c' Form Feed
1662+ * ' \x1c' File Separator
1663+ * ' \x1d' Group Separator
1664+ * ' \x1e' Record Separator
16651665 * Next separators values, detected by Python method splitlines(), are currently NOT detected by CppStrings
1666- * \x85 Next Line (C1 Control Code)
1667- * \u2028 Line Separator
1668- * \u2029 Paragraph Separator
1666+ * ' \x85' Next Line (C1 Control Code)
1667+ * ' \u2028' Line Separator
1668+ * ' \u2029' Paragraph Separator
16691669 */
16701670 [[nodiscard]]
16711671 std::vector<CppStringT> splitlines (const bool keep_end = false ) const noexcept
0 commit comments