You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disclaimer: I might be misunderstanding the dictionary lookup!
The operator || (two ASCII characters) has infix, prefix, and postfix forms listed in Figure 29. However, the lookup algorithm in B1 remaps || to 0x0331, which only has prefix and postfix forms in Figures 26, 27.
Since the algorithm in 3.2.4.2 says you should try infix, postfix, prefix until you find a non-default answer, || never gets the infix spacing.
In fact, Google Chrome 135 seemingly adds no space around infix instances of ||.
The text was updated successfully, but these errors were encountered:
Disclaimer: I might be misunderstanding the dictionary lookup!
The operator
||
(two ASCII characters) has infix, prefix, and postfix forms listed in Figure 29. However, the lookup algorithm in B1 remaps||
to 0x0331, which only has prefix and postfix forms in Figures 26, 27.Since the algorithm in 3.2.4.2 says you should try infix, postfix, prefix until you find a non-default answer,
||
never gets the infix spacing.In fact, Google Chrome 135 seemingly adds no space around infix instances of
||
.The text was updated successfully, but these errors were encountered: