Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:91912 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 41185 invoked from network); 24 Mar 2016 18:04:26 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 24 Mar 2016 18:04:26 -0000 Authentication-Results: pb1.pair.com smtp.mail=pthreads@pthreads.org; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=pthreads@pthreads.org; sender-id=unknown Received-SPF: error (pb1.pair.com: domain pthreads.org from 209.85.161.173 cause and error) X-PHP-List-Original-Sender: pthreads@pthreads.org X-Host-Fingerprint: 209.85.161.173 mail-yw0-f173.google.com Received: from [209.85.161.173] ([209.85.161.173:35343] helo=mail-yw0-f173.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DC/C4-15440-92C24F65 for ; Thu, 24 Mar 2016 13:04:25 -0500 Received: by mail-yw0-f173.google.com with SMTP id g127so69072450ywf.2 for ; Thu, 24 Mar 2016 11:04:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pthreads-org.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=XH21hbaJ2lAxZ3fJ3p8zw5UWvTQ5+rJdMsSirbW9C74=; b=ZTdVyKc7gum6MATxUhwVniv2mozYc/RD7HETL7lLEqJ8CI40j6BHVrnYCgnaupccAc iNbDmAs7SO+C3l6XDGWApQw2JC6rSAOptSXPSZ97FaeCELaknddg/kdKr2qrJIBmk7xe +KWr1FDKjw+8re/KNEQiwL83GYU2OThm0KmTw67NZi/7Hce8IOGpDE5VtK+TA2KqZikw Z9avg0+KKAGDIWpD5fIcmW9qgQpLauXg6myokX4wdHJZQcn1BlJ7Io7BNH+NwyNLtZqw pYWnS/qktBzd7X8VKy1JKYMb7qcRD5d9Y0Yuonh8QPzHsNsFYx0WevvmWQS4Z0ydNZ/S rSLw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=XH21hbaJ2lAxZ3fJ3p8zw5UWvTQ5+rJdMsSirbW9C74=; b=BWbSliaafMqABdMII6pcftbRysWAouWBak9HHSspy07zQr7dAhWCQW2zNxGCfuerWM F84wd/VlRdbb7yf7goVi8AIDu06mnzs54Zq2yLM/RzZifFzMD7MRSgquMlCx8Ma+rR5j KjBdZsNUbfvzBcNuqOb14D/sYtH2Vk2UDsY8O1sj6nM/oqOh/k829g6oHzPjMkw77Y2n fwVMp8byxlgAkVcEnTT0EikFbqESkscSEZqyAfouLl0Vl+YxiJbNp0NiDktNv/jQ9IeU 8c7QvnSNfLNqqf8ZVHcl9u8ly5V31o0RaZSv6GuPVRrB4bhIQE94DJMxQIYz9Kl+OgDD Q4gA== X-Gm-Message-State: AD7BkJLg6dELRX7Cj7Je3VcimY/fZloe/PEd4ZBlHyC6hGzwzPJiyWjOMJRUXcb4mhjKCMNb1wM6uO7viG9dyg== MIME-Version: 1.0 X-Received: by 10.13.236.137 with SMTP id v131mr5107787ywe.102.1458842662982; Thu, 24 Mar 2016 11:04:22 -0700 (PDT) Received: by 10.129.81.133 with HTTP; Thu, 24 Mar 2016 11:04:22 -0700 (PDT) X-Originating-IP: [86.191.46.104] In-Reply-To: References: Date: Thu, 24 Mar 2016 18:04:22 +0000 Message-ID: To: Bob Weinand Cc: Nikita Popov , PHP internals Content-Type: multipart/alternative; boundary=94eb2c086cd2b6070d052ecf4662 Subject: Re: [PHP-DEV] Add spaceship assignment operator From: pthreads@pthreads.org (Joe Watkins) --94eb2c086cd2b6070d052ecf4662 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Morning Nikita, Thanks for all your hard work. Since consistency is one of our main focuses, I move that the discussion period for this extremely important work is moved forward by one week. All in favour, say I. Cheers Joe On Thu, Mar 24, 2016 at 5:56 PM, Bob Weinand wrote: > > > Am 24.3.2016 um 18:50 schrieb Nikita Popov : > > > > Hi internals! > > > > For consistency, we should add a spaceship assignment operator: > > > > $a <=3D>=3D $b; > > // same as > > $a =3D ($a <=3D> $b); > > > > Additionally, we should add an is-identical assignment operator: > > > > $a =3D=3D=3D=3D $b; > > // same as > > $a =3D ($a =3D=3D=3D $b); > > > > Thank you for taking this proposal under consideration. > > > > Regards, > > Nikita > > I see a problem with that =E2=80=A6 It=E2=80=99d be impossible to make it= consistent with > is-equal comparison=E2=80=A6 > > =3D=3D=3D is already is-identical comparison. So, no symbol for the is-eq= ual > assignment operator left. > > As long as you don=E2=80=99t have any better suggestion, I=E2=80=99m sorr= y, but -1 on that. > > Bob > > > > > --94eb2c086cd2b6070d052ecf4662--