With ruby 3.1.0 on my LXC box, this is the only problem reported as a failure with `make test-all`. It would be helpful if you could merge https://github.com/ruby/resolv/pull/2.gotoken (Kentaro Goto)
> Alternatively this could be part of the default output when starting WEBrick, That's a good idea. However, since the definition of the port number output is in the HTTPServer superclass WEBrick::GenericServer, the amount of change i...gotoken (Kentaro Goto)
Boolean `size?` looks good to me. I vote for it. My first choice was `nonempty?` because this is very common word in popular algorithm text books, e.g., Knuth, Cormen, Sedgewick, Tarjan, Aho, Hopcroft, etc. However some people pointed ...gotoken (Kentaro Goto)
Recently I read similar topic again elsewhere. They pointed * in most cases we have something to do on each duplicate element if any duplicate detected, e.g., reporting all duplicate elements as an error message * `uniq?` looks slightly...gotoken (Kentaro Goto)
The current version of un.rb `httpd` shows port number only: ``` $ ruby -run -e httpd [2021-05-03 21:55:09] INFO WEBrick 1.7.0 [2021-05-03 21:55:09] INFO ruby 3.1.0 (2021-05-03) [x86_64-linux] [2021-05-03 21:55:09] INFO WEBrick...gotoken (Kentaro Goto)
That depends on your purpose or background of the problem. In non-math situations, `power(a, b)` should not return any ordinary number for given `a`<0 where `power(a, b)` stands for "`a` to the power of `b`" over real, just identical to ...gotoken (Kentaro Goto)
Thanks shyouhei for your pointing out. I imagine another Rexexp option, say `//I`, which is almost the same as `//i` except for never-applying SpecialCasing mapping. This change extends Unicode matching indeed but does not introduc...gotoken (Kentaro Goto)
Thanks znz. The workaround is helpful. And I understood what was happened. https://github.com/k-takata/Onigmo/issues/92#issuecomment-373981492 shows how some combinations of letters are variable length. For example, `"ss"` and `"st"`...gotoken (Kentaro Goto)