equal
deleted
inserted
replaced
969 } |
969 } |
970 |
970 |
971 /** |
971 /** |
972 * Parses the string argument as an unsigned decimal {@code long}. The |
972 * Parses the string argument as an unsigned decimal {@code long}. The |
973 * characters in the string must all be decimal digits, except |
973 * characters in the string must all be decimal digits, except |
974 * that the first character may be an an ASCII plus sign {@code |
974 * that the first character may be an ASCII plus sign {@code |
975 * '+'} ({@code '\u005Cu002B'}). The resulting integer value |
975 * '+'} ({@code '\u005Cu002B'}). The resulting integer value |
976 * is returned, exactly as if the argument and the radix 10 were |
976 * is returned, exactly as if the argument and the radix 10 were |
977 * given as arguments to the {@link |
977 * given as arguments to the {@link |
978 * #parseUnsignedLong(java.lang.String, int)} method. |
978 * #parseUnsignedLong(java.lang.String, int)} method. |
979 * |
979 * |