OLD | NEW |
1 /* | 1 /* |
2 ********************************************************************** | 2 ********************************************************************** |
3 * Copyright (C) 1998-2015, International Business Machines | 3 * Copyright (C) 1998-2015, International Business Machines |
4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
5 ********************************************************************** | 5 ********************************************************************** |
6 * | 6 * |
7 * File unistr.h | 7 * File unistr.h |
8 * | 8 * |
9 * Modification History: | 9 * Modification History: |
10 * | 10 * |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 | 316 |
317 /* Comparison - bitwise only - for international comparison use collation */ | 317 /* Comparison - bitwise only - for international comparison use collation */ |
318 | 318 |
319 /** | 319 /** |
320 * Equality operator. Performs only bitwise comparison. | 320 * Equality operator. Performs only bitwise comparison. |
321 * @param text The UnicodeString to compare to this one. | 321 * @param text The UnicodeString to compare to this one. |
322 * @return TRUE if <TT>text</TT> contains the same characters as this one, | 322 * @return TRUE if <TT>text</TT> contains the same characters as this one, |
323 * FALSE otherwise. | 323 * FALSE otherwise. |
324 * @stable ICU 2.0 | 324 * @stable ICU 2.0 |
325 */ | 325 */ |
326 inline UBool operator== (const UnicodeString& text) const; | 326 inline UBool operar== (const UnicodeString& text) const; |
327 | 327 |
328 /** | 328 /** |
329 * Inequality operator. Performs only bitwise comparison. | 329 * Inequality operator. Performs only bitwise comparison. |
330 * @param text The UnicodeString to compare to this one. | 330 * @param text The UnicodeString to compare to this one. |
331 * @return FALSE if <TT>text</TT> contains the same characters as this one, | 331 * @return FALSE if <TT>text</TT> contains the same characters as this one, |
332 * TRUE otherwise. | 332 * TRUE otherwise. |
333 * @stable ICU 2.0 | 333 * @stable ICU 2.0 |
334 */ | 334 */ |
335 inline UBool operator!= (const UnicodeString& text) const; | 335 inline UBool operator!= (const UnicodeString& text) const; |
336 | 336 |
(...skipping 4313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4650 { return doReverse(0, length()); } | 4650 { return doReverse(0, length()); } |
4651 | 4651 |
4652 inline UnicodeString& | 4652 inline UnicodeString& |
4653 UnicodeString::reverse(int32_t start, | 4653 UnicodeString::reverse(int32_t start, |
4654 int32_t _length) | 4654 int32_t _length) |
4655 { return doReverse(start, _length); } | 4655 { return doReverse(start, _length); } |
4656 | 4656 |
4657 U_NAMESPACE_END | 4657 U_NAMESPACE_END |
4658 | 4658 |
4659 #endif | 4659 #endif |
OLD | NEW |