Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:105796 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 47989 invoked from network); 29 May 2019 16:54:05 -0000 Received: from unknown (HELO smtp.opensides.be) (195.154.20.141) by pb1.pair.com with SMTP; 29 May 2019 16:54:05 -0000 Received: from localhost (localhost [127.0.0.1]) by smtp.opensides.be (Postfix) with ESMTP id EF28924331C for ; Wed, 29 May 2019 16:03:29 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at opensides.be Received: from smtp.opensides.be ([127.0.0.1]) by localhost (smtp.opensides.be [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LNGpGkgr-FD3 for ; Wed, 29 May 2019 16:03:27 +0200 (CEST) Received: from mcmic-probook.opensides.be (63.120.199.77.rev.sfr.net [77.199.120.63]) by smtp.opensides.be (Postfix) with ESMTPSA id D13872424C6 for ; Wed, 29 May 2019 16:03:27 +0200 (CEST) To: internals@lists.php.net Date: Wed, 29 May 2019 16:03:23 +0200 Message-ID: <3158562.kWcuPzWCVx@mcmic-probook> Organization: OpenSides User-Agent: KMail/5.2.3 (Linux/4.9.0-9-amd64; KDE/5.28.0; x86_64; ; ) In-Reply-To: <39e8e5ad-6685-9406-68ac-1fb1edbeb537@fischer.name> References: <1858501.VmE1D5L3rF@mcmic-probook> <39e8e5ad-6685-9406-68ac-1fb1edbeb537@fischer.name> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" Subject: Re: [PHP-DEV] Re: [RFC] Numeric Literal Separator From: come@opensides.be (=?ISO-8859-1?Q?C=F4me?= Chilliet) Le mercredi 29 mai 2019, 10:39:17 CEST Markus Fischer a =C3=A9crit : > My understanding from the RFC is that that the grouping is not relevant,= =20 > the `_` is stripped regardless. >=20 > Am I wrong? No you=E2=80=99re not, the RFC allows grouping as the coder wants. Which is why I think it may cause problems because the way the coder wants = to group digits and the way easier for me to read is not always the same. As Christoph M. Becker states there are already problems like this with cho= ice of names for variables and code style and such, but until now numbers w= ere a safe place that always looks the same. If people want to see big numbers broke up in groups of 3 I would expect th= eir IDE to do this on numbers for them. But I do get the point of the RFC for hexa and bit masks. C=C3=B4me