Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:121420 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 16864 invoked from network); 18 Oct 2023 18:45:56 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 18 Oct 2023 18:45:56 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 98285180503 for ; Wed, 18 Oct 2023 11:45:55 -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=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS24940 176.9.0.0/16 X-Spam-Virus: No X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 18 Oct 2023 11:45:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1697654753; bh=C12wueYDvubu8lsIMQ2aKkUhJYE46aMr0cObwmcY/Zo=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=lGeHdjEfv6XBwIcSgmPfi4IyEuGAgr/tfBRb8jWFhTIRiY1GZxk/Bz/AlrepzHEPh qHqRZkd2IUZlP1iHA3AOeTce0IQtmT50/0u71AZtTya427loIL5uIpKXLH8DJau2Py ZQTX1HpoF04CzOxQo/wwQH4vqrxJg5qS443+svxu2Nz/7K4wbBB9HSkAtDutwEZYdW Y1WDgBub66Ep3HSxNteVtnw421pmSQa8E6JnO3mAuhaQcaXbg++0kI5cmJXqXT0gJw o2k2/7tlRF3+jT/BMSEl85iwXqQnHUY/whgPUWZICXb6VUY0EpbtgJW5fCDFoqzMUL Rq1jF4wz0tMow== Message-ID: <360b0cc0-505e-4865-b9a5-7f4f0a362dd0@bastelstu.be> Date: Wed, 18 Oct 2023 20:45:52 +0200 MIME-Version: 1.0 Content-Language: en-US To: internals@lists.php.net References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] Custom object equality From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi On 10/18/23 18:42, Larry Garfield wrote: > Honestly I'm still on team operator-override. *Most* major languages have operator overloading, and it doesn't seem to cause a problem. (According to my research, C++, Kotlin, Swift, Rust, C#, Haskell, Python, and Ruby all have operator overloading. Go, TypeScript, PHP, and Javascript do not. Java has comparison-only overloading so it's in the middle.) Most of the "it causes so many problems" arguments are, from what I can tell, greatly over-exaggerated. To clarify here: Haskell does not have operators per se. It has functions whose name may consist of symbols only. It also has function overloading via its typeclass feature (roughly comparable to interfaces). It also allows to write any binary function in infix form by wrapping it into backticks. > More to the point, the key question is whether anyone who voted No on the previous operator overloading RFC would vote Yes on an operator-overloading-but-only-with-an-opt-in-prefix RFC. If not, then it doesn't really buy us anything. If so, then it's possible as a compromise but would, frankly, be strictly inferior to just using the native operators we already have. > > So the real question is: Would anyone who voted No on operator overloading before vote Yes on it if it used ~=, ~>, ~+, etc. instead? I did not vote, but I would not vote in favor of operator overloading with a different syntax. My main issue with operator overloading via instance methods is that it's too easy to achieve a non-symmetric equality, i.e. `$a == $b` != `$b == $a`. This is a somewhat common problem of Java's `.equals()` method, unless you are careful with how you write the implementation (e.g. https://stackoverflow.com/a/6518645). At least for `.equals()` it would be obvious that it would be an instance method and that it might not be symmetric. Operator overloading is only a value-add to me, if it would be realized via free-standing functions to ensure there is a single canonical implementation for a given operator, instead two different ones with inverted parameter order. And yes, I realize that this would require function overloading. ------------ I would be in favor of allowing writing binary functions in infix position to allow stuff like '($foo bcadd 5)', because I can see how that is more readable than `bcadd($foo, 5)` Best regards Tim Düsterhus