I seem to remember from the book (http://exceptionalruby.com/) by Avdi Grimm that in general, methods that have the same name as classes are more tolerant than other constructors. If I remember correctly, and this is by design, then we should leave it as is.
I understand that this is not part of class Float itself; but it uses
the same name (just distinguishes with the () for method call). It
may not have to be explained in that document, but a link to
where this may be explained may be helpful for people.
I would also recommend to put this information somewhere in
the official documentation, ideally after matz could comment
on it (since only matz fully knows the intent behind Float() and
the other methods) - I note this down only so that we can find
this in the official documentation as well. Nothing against the
book, mind you, but I believe that the main ruby documentation
site would be the ideal place for such documentation.
I seem to remember from the book (http://exceptionalruby.com/) by Avdi Grimm that in general, methods that have the same name as classes are more tolerant than other constructors. If I remember correctly, and this is by design, then we should leave it as is.
I have just confirmed the above with Avdi's book (p. 62).