Closed michallepicki closed 3 years ago
@ostera I think I am done for now, I added a few more operators to make them working but if you want I could remove them altogether (I can't move them to the Erlang module because they are operators so need special handling)
I can now see that
floor
is already present in the Erlang module. I could remove this reference from Core then, I think, and move the relatedceil
andabs
out of the Core to there as well?And I'm not sure if those should stay in Core as well:
Maybe just keep
float_of_int
andint_of_float
and move the rest to Erlang?edit: not sure if
mod
could be moved easily, I think since it needs this special handling because it's a keyword it may have to stay in Core for now.float
andtruncate
are duplicates, I thinkfloat_of_int
andint_of_float
are used more often, right?edit2: I just went ahead and made those changes ^