triallax changed the topic of #numbat to: The Official Numbat channel https://numbat.dev | This channel is publicly logged at https://libera.irclog.whitequark.org/numbat | Please read https://workaround.org/getting-help-on-irc/ if you're new to IRC!
<achin> i shared numbat.dev with some coworkers, and the very first question they asked was "can it convert celsius to fahrenheit" :)
<triallax> what'd they say when you answered yes?
<triallax> or wait, i guess there's no direct conversion
<triallax> from_celsius(100) -> fahrenheit
<triallax> this works but is kinda fiddly i guess
<achin> i actually didn't know howto answer, because in my local version, i have a custom celsius_to_fahrenheit function, and i didn't know how to do the conversion without it :)
sharkdp has joined #numbat
sharkdp has quit [Remote host closed the connection]
sharkdp has joined #numbat
sharkdp has quit [Remote host closed the connection]
sharkdp has joined #numbat
<sharkdp> achin: Thank you for sharing.. and for the feedback. It is indeed embarrasing for such a complicated piece of software that we don't have a nice way to convert degF to degC. But we have a ticket for this https://github.com/sharkdp/numbat/issues/184, and I still believe we should find a way to support an input like "30°C to °F".
<sharkdp> The solution we have right now (from_celsius(30) -> fahrenheit) and everything else we come up with as hacks to add this to the language have the same problem. Those solutions are not "discoverable" by the user. We need to support things that users will type first (e.g. 30 celsius -> fahrenheit)
<triallax> do you have anything in mind on how to implement this without fundamental changes to numbat?
<sharkdp> I'm not sure fundamental changes are needed. But we need a new kind of unit and quantity (with additive offsets). And we need to think about whether or not we want/need to lift that information to the type system as well. We probably want to prevent things like "3°C + 4°C" at compile time.
<sharkdp> On the other hand, we would probably want to have an expression like "3°C" to be of type "Temperature" such that we can use it everywhere that a temperature is expected.
<sharkdp> Or maybe "3°C" is of type AdditiveOffset<Temperature>, where quanties of type AdditiveOffset<X> can decay to X implicitly.
sharkdp has quit [Remote host closed the connection]