Project

General

Profile

Feature #16894

Updated by ankane (Andrew Kane) almost 4 years ago

Hi Ruby team, 

 It'd be great if division in Ruby matched what we all learned in school. 

 ``` ruby 
 1 / 2 == 0.5 
 ``` 

 New developers wouldn't immediately be confused when they try to do division and experienced developers could stop adding to_f to their code (typically after they get tripped up on the first run). In my experience, ~~normal~~ floating point division is way more common than floor division. This could definitely break existing code, so I understand it's a decision that shouldn't be made lightly. Overall, Ruby is really intuitive, but this is one place where it's not. 

 It looks like this was considered for Ruby 2.0 as well as few years ago in #5512, so feel free to close if it's not something you'd like to reconsider right now.

Back