Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:115594 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 20817 invoked from network); 27 Jul 2021 19:43:28 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 27 Jul 2021 19:43:28 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id AD8DD180212 for ; Tue, 27 Jul 2021 13:10:29 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,FREEMAIL_REPLY, HTML_MESSAGE,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS15169 209.85.128.0/17 X-Spam-Virus: No X-Envelope-From: Received: from mail-lj1-f176.google.com (mail-lj1-f176.google.com [209.85.208.176]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Tue, 27 Jul 2021 13:10:29 -0700 (PDT) Received: by mail-lj1-f176.google.com with SMTP id x7so201196ljn.10 for ; Tue, 27 Jul 2021 13:10:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=1pDBzNuuc3lHzEJL2HjWF7uw7zJVZ3D4igNO7EIqK3k=; b=YWVE6qRVQ1DQoFBqxWWRz+mFh4T0jAngDfkIMRF6ACzyp5KZNhy8NmLVTUAFwXLM5K 8RECBIqhprs7pvuGgsiVl1UHvKXGLtOY2fLb7BRaaoOoEQ6k+0D65C9C37PWf51LsK/+ uu6cB4JNj8ABpO/RUDjdykC5Pcl7puDCQ/dP1ilI3G7HUjIYjPRC8t9sIZHAjVzdsp4A kSHjgBYvJTqLSL9B0WJk0eYc5qa/Of6nUZkrJddIrJW0e9pzY8xdDtVNM3vCqlPU7oqc zj7V1WUvjSh7t2mblBKN8SZN/0zI+/6HP+ugV4nqWEr9v/N6ScpsbG0ocqYy0snnf2Pb IWcQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=1pDBzNuuc3lHzEJL2HjWF7uw7zJVZ3D4igNO7EIqK3k=; b=oueHosXfbvWeR+IXD2Appxxu8+BPEJsxRBxl8vyLbUiU9fVP+QyW74Y920lSr/58Lp JBj34W8JcnIuOkf3WkXFxhYk6SIY9ZMHnMlLQ4DK6r0ebhGJMKu3Ip/cv3G8U5sliFQr skAxjRi3OljTdWOhgHrntEjbmRHnY1pFb4fq2GQwp/CxHWXED+jav5t+UFP1jk1Qy7y3 ums6DhNE8psh2N8ht/ONpWxXcDaaSH77ZPdeDW4x32Slg1PZqJSibT/tPA0ZIVfE4PlG nLh+1h8+xQWWkG37JbqifaOOUqgNSz8G5o+aEWcyTrKBHQzlaRJyGRC7W/7KXwolua0g +MPA== X-Gm-Message-State: AOAM531cpvg3TJtLGBZhJa/9o4XYScF8m08WCZO5KhQMCpvblchVoea6 QwBL/8cL0RNMnGIyfCuRVEMrd8qM8dAuh8oepro= X-Google-Smtp-Source: ABdhPJzRPjz7NrntHLqoMHbKJXTokZPe2gDu6H64Jj5rzrj7ti9Z0xM0qN8lCNv2DktbSOrvjX7OhvkbeEiKZMlpusQ= X-Received: by 2002:a2e:165d:: with SMTP id 29mr16274633ljw.484.1627416625052; Tue, 27 Jul 2021 13:10:25 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Date: Tue, 27 Jul 2021 13:10:26 -0700 Message-ID: To: Brent Roose Cc: PHP Internals , Nicolas Grekas Content-Type: multipart/alternative; boundary="000000000000d6876705c8207511" Subject: Re: [PHP-DEV] [RFC] Nullable intersection types From: jordan.ledoux@gmail.com (Jordan LeDoux) --000000000000d6876705c8207511 Content-Type: text/plain; charset="UTF-8" > - PHP 7.0 types were a pain because of non-nullable types, the feature only became really useful as of PHP 7.1 See, this keeps being said, but as another userland developer it's extremely confusing. The types in 7.0 were very useful, and I personally didn't notice at all that they were missing because I used something like function(int $var = null), which is how nulls had been marked before PHP 7. In fact, when 7.1 was released, none of the signatures changed in my code, they were just updated to a different syntax. > - I share many people's opinion that this falls in the category of oversight I don't see how, when the intersection types RFC was: - Named "pure intersection types", which to me can only mean that the authors were both aware that there were other integrations which may be suggested and were excluding them from scope. - It contained an explicit mention of this issue: > This means it would *not* be possible to mix intersection and union types together such as A&B|C, this is left as a future scope. I also am not seeing that opinion from "many people" in this thread. Are you referring to other people off-list who are discussing this? Jordan On Tue, Jul 27, 2021 at 6:32 AM Brent Roose wrote: > Hi all > > From a userland developer point of view: > > - PHP 7.0 types were a pain because of non-nullable types, the feature > only became really useful as of PHP 7.1 > - I share many people's opinion that this falls in the category of > oversight > - I think (A&B)|null is the only sensible way to go > > Sidenote: weren't there any prior cases where an RFC was accepted only to > have found out an oversight which resulted in that RFC to be postponed to > the next release? > > Kind regards > Brent > > > On 26 Jul 2021, at 16:14, Sara Golemon wrote: > > > > On Fri, Jul 23, 2021 at 4:58 AM Nicolas Grekas > > > wrote: > > > >> https://wiki.php.net/rfc/nullable_intersection_types > >> > >> > > I've commented on the PR and in R11 a bit already, but I'd like to state > my > > position here for the record. I do see the value in having nullability, > > but I can't disagree enough with the `?X&Y` syntax no matter how > > technically right the argument about operator precedence is. Even > ignoring > > that literally nobody carries around a complete operator precedence table > > in their head, we simply can't predict how making this decision now will > > impact future plans for combined intersection/union types. The same > > argument honestly goes for every other syntax proposed, including > > `(X&Y)|null` which is also prone to making things worse. > > > > Nullable intersection types *IS* an implementation of combined > > intersection/union types, even if a narrow one. Those have not been > planned > > out or approved, and they're too broad to sneak in post feature freeze. > > Period. Let's take the coming months to flesh out the edge cases on > > combined types. Let's maybe even look into type aliasing, which may have > > the side effect of making combined types more readable (or maybe less, > who > > knows!). > > > > Most importantly, let's accept the fact that PHP's release cycle is only > 12 > > months and we had pandemics that lasted longer than that. Next year is > > right around the corner. > > > > TL;DR - I've decided my vote. > > > > -Sara > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: https://www.php.net/unsub.php > > --000000000000d6876705c8207511--