- From: Anne van Kesteren <notifications@github.com>
- Date: Mon, 02 Nov 2020 23:51:29 -0800
- To: whatwg/encoding <encoding@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 3 November 2020 07:51:42 UTC
@annevk commented on this pull request. > - <li><p>Return a code point whose value is 0xF780 + <var>byte</var> − 0x80. + <li><p>If <var>byte</var> is an <a>ASCII byte</a>, then return a <a>code point</a> whose + <a for="code point">value</a> is <var>byteValue</var>. + + <li><p>Return a <a>code point</a> whose <a for="code point">value</a> is + 0xF780 + <var>byteValue</var> − 0x80. We've had some cases where we want to distinguish bytes from numbers. So the question is whether we want to do that here as well. And I guess in some sense we do since we want to return code points or bytes, but a lot of the calculations are on numbers. I think we could use _byte_ in the calculation directly (as we already did), but it wouldn't really be logically consistent with how we talk about bytes and numbers elsewhere in the web platform. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/encoding/pull/247#discussion_r516474508
Received on Tuesday, 3 November 2020 07:51:42 UTC