Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:123716 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id 58F7E1A009C for ; Thu, 20 Jun 2024 22:09:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1718921444; bh=OcXdytqIuyJCEnkZfPTFR/UFz4EzN/fz0z/CQ42X86g=; h=Date:Subject:To:References:From:In-Reply-To:From; b=mt8RKEwYteoVlNT3kTqtE+MhqGiH7nEp+EbIMgZGyzcm9mfYtF0MPGBCrOEopt2Dc o5rdJLexGBfDL7wGtARxpMdE1KvuBTmjaVuxB9vmwH+Tw4cdiK28V7ameBu8U4ZXHd YJRneQ6AyCb0IRuf/8yJ8h8trR1OLWh9/uiy+C3ps/+iguKC/EZwFklPM/UY+Mx3us dxUnK5b7FnpNyyl2OAEVxZppX3YXpsiUR0gB8klfMBjDqkJBNpFb8ByKl1LW+xZOYy qqpKi7cFFKskAJWK/UlsgK+2Fj9yMu1okX0sn0S8kM7yZJhOlRFiuyWz6wn9HmeFY4 FW87wS+6aZ+Bg== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 7EA7E180A33 for ; Thu, 20 Jun 2024 22:10:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,DMARC_MISSING, SPF_HELO_NONE,SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: Error (Cannot connect to unix socket '/var/run/clamav/clamd.ctl': connect: Connection refused) X-Envelope-From: Received: from alcott.smtp.mailx.hosts.net.nz (alcott.smtp.mailx.hosts.net.nz [43.245.52.158]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Thu, 20 Jun 2024 22:10:40 +0000 (UTC) Received: from 222-152-65-7-vdsl.sparkbb.co.nz ([222.152.65.7] helo=[192.168.1.67]) by alcott.smtp.mailx.hosts.net.nz with esmtpsa authed as varteg.nz (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_128_GCM:128) (Exim 4.96) (envelope-from ) id 1sKPy8-002a6s-0u for internals@lists.php.net; Fri, 21 Jun 2024 10:09:24 +1200 Message-ID: <02ee8831-43a0-4857-886e-7f54fb42a99d@varteg.nz> Date: Fri, 21 Jun 2024 10:09:16 +1200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PHP-DEV] [Early Feedback] Pattern matching To: internals@lists.php.net References: <2a6b92eb-d5e9-4a1a-9548-a068ac42ebd2@app.fastmail.com> Content-Language: en-GB In-Reply-To: <2a6b92eb-d5e9-4a1a-9548-a068ac42ebd2@app.fastmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Hosts-DKIM-Check: none From: weedpacket@varteg.nz (Morgan) On 2024-06-21 05:38, Larry Garfield wrote: > Hello, peoples. > > To that end, we're looking for *very high level* feedback on this RFC: > > https://wiki.php.net/rfc/pattern-matching > As I started reading I starting thinking of "whatabouts" based on my experience with pattern matching in other languages, and as I skimmed the RFC I found each of them being addressed. I'm looking forward to this. If you want my feedback about match() "is" placement, I can see the benefits of both, and they don't look mutually exclusive, since the "is" effectively just distributes over the branches to produce the inline alternative; with that interpretation it's just an error to have "is" in the top position and something other than a type pattern in any branch because it would be equivalent to "is ". I suspect the case where one is matching against a list of types will turn out to be quite common, so if "match ($somevar) is {" weren't implemented there'd soon be people asking for something equivalent to save them typing "is" over and over. One thing to note is that if "is" were to be in the top position, it means every branch has to be a type pattern, which means instead of "default" the catch-all branch would be "mixed". (That's a question: won't the branches of "match($var)is{" need to range over every possible type?) One tiny note about BC breakage: > If the as keyword is adopted as well, that will also be a new global keyword. "as" is already a global keyword (as in "foreach($arr as $e)"). So that's not such a problem after all.