ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: zverok.offline@gmail.com
To: ruby-core@ruby-lang.org
Subject: [ruby-core:81691] [Ruby trunk Bug#13663] `String#upto` doesn't work as expected
Date: Thu, 15 Jun 2017 12:53:54 +0000	[thread overview]
Message-ID: <redmine.journal-65380.20170615125354.af914a6be1564561@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-13663.20170615072454@ruby-lang.org

Issue #13663 has been updated by zverok (Victor Shepelev).


I believe that problem here is how to provide consistency between `succ` and `<=>` for arbitrary length strings.

1. For most of the real use cases, `'x' > 'ac'` is sane (like sorting strings);
2. Things using `succ` (like `upto` and ranges) should check that begin is lower than end;

So... I believe that it is only reasonable to have (1) and (2), though sometimes it leads to "inconsistencies", like described above. If you do a lot of stuff with making ranges from "x" to "ac" it is probably better to have dedicated value object class, with redefined `<=>` and `succ`

----------------------------------------
Bug #13663: `String#upto` doesn't work as expected
https://bugs.ruby-lang.org/issues/13663#change-65380

* Author: sos4nt (Stefan Schüßler)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-darwin15]
* Backport: 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN
----------------------------------------
Given that `String#upto` uses `String#succ` to generate successive values, I'd expect

```ruby
'x'.upto('ac').to_a #=> []
```

to return:

```ruby
["x", "y", "z", "aa", "ab", "ac"]
```

Instead, an empty array is returned.

This seems to depend on whether the the receiver is greater than the argument or not:

```ruby
'x' <=> 'ac' #=> 1
```

It works just fine in this case:

```ruby
'b'.upto('ca').to_a
#=> ["b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n",
#    "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "aa",
#    "ab", "ac", "ad", "ae", "af", "ag", "ah", "ai", "aj", "ak", "al",
#    "am", "an", "ao", "ap", "aq", "ar", "as", "at", "au", "av", "aw",
#    "ax", "ay", "az", "ba", "bb", "bc", "bd", "be", "bf", "bg", "bh",
#    "bi", "bj", "bk", "bl", "bm", "bn", "bo", "bp", "bq", "br", "bs",
#    "bt", "bu", "bv", "bw", "bx", "by", "bz", "ca"]
```

Presumably because of:

```ruby
'b' <=> 'ca' #=> -1
```




-- 
https://bugs.ruby-lang.org/

  parent reply	other threads:[~2017-06-15 12:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <redmine.issue-13663.20170615072454@ruby-lang.org>
2017-06-15  7:24 ` [ruby-core:81690] [Ruby trunk Bug#13663] `String#upto` doesn't work as expected mail
2017-06-15 12:53 ` zverok.offline [this message]
2017-06-15 13:08 ` [ruby-core:81692] " hanmac
2017-06-23 11:47 ` [ruby-core:81750] " mail

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.ruby-lang.org/en/community/mailing-lists/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-65380.20170615125354.af914a6be1564561@ruby-lang.org \
    --to=ruby-core@ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).