From 605b472d2d33ec9f0cea9e8b57a558fac3e0302d Mon Sep 17 00:00:00 2001 From: stomar Date: Sat, 11 Mar 2017 20:01:55 +0000 Subject: [PATCH] docs for String#casecmp and String#casecmp? * string.c: [DOC] specify when String#casecmp and String#casecmp? return nil; modify examples to better show difference to <=>; fix RDoc markup and typos. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57886 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/string.c b/string.c index c002c9c24e..4901c38d51 100644 --- a/string.c +++ b/string.c @@ -3200,16 +3200,20 @@ rb_str_cmp_m(VALUE str1, VALUE str2) /* * call-seq: - * str.casecmp(other_str) -> -1, 0, +1 or nil + * str.casecmp(other_str) -> -1, 0, +1, or nil * * Case-insensitive version of String#<=>. * Currently, case-insensitivity only works on characters A-Z/a-z, - * not all of Unicode. This is different from casecmp?. + * not all of Unicode. This is different from String#casecmp?. * - * "abcdef".casecmp("abcde") #=> 1 + * "aBcDeF".casecmp("abcde") #=> 1 * "aBcDeF".casecmp("abcdef") #=> 0 - * "abcdef".casecmp("abcdefg") #=> -1 + * "aBcDeF".casecmp("abcdefg") #=> -1 * "abcdef".casecmp("ABCDEF") #=> 0 + * + * +nil+ is returned if the two strings have incompatible encodings. + * + * "\u{e4 f6 fc}".encode("ISO-8859-1").casecmp("\u{c4 d6 dc}") #=> nil */ static VALUE @@ -3274,14 +3278,18 @@ rb_str_casecmp(VALUE str1, VALUE str2) * call-seq: * str.casecmp?(other_str) -> true, false, or nil * - * Returns true if str and other_other_str are equal after Unicode case folding, - * false if they are not equal, and nil if other_str is not a string. + * Returns +true+ if +str+ and +other_str+ are equal after + * Unicode case folding, +false+ if they are not equal. * - * "abcdef".casecmp?("abcde") #=> false + * "aBcDeF".casecmp?("abcde") #=> false * "aBcDeF".casecmp?("abcdef") #=> true - * "abcdef".casecmp?("abcdefg") #=> false + * "aBcDeF".casecmp?("abcdefg") #=> false * "abcdef".casecmp?("ABCDEF") #=> true - * "\u{e4 f6 fc}".casecmp?("\u{c4 d6 dc}") #=> true + * "\u{e4 f6 fc}".casecmp?("\u{c4 d6 dc}") #=> true + * + * +nil+ is returned if the two strings have incompatible encodings. + * + * "\u{e4 f6 fc}".encode("ISO-8859-1").casecmp?("\u{c4 d6 dc}") #=> nil */ static VALUE