Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125823 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 338151A00BD for ; Mon, 21 Oct 2024 13:21:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1729517005; bh=qf7yAN2wYHv5qTnTT32Mp/3g5DBdCQGZye7EYa70ghA=; h=Date:To:From:Subject:In-Reply-To:References:From; b=YuiOYwODHCkA0/LobphMl7ohKVQdFWTjhiX6liqDkYoA8kIS42YTMFb5JEZMP1APM gaiIpn/yFifom4J+2hrqYSESbqXrb+N5AqkRZHjDO8iiVXgBRfJSv9N5JCNiqQ2Zvp p7ND5Z4jAKgd/IYzaA8JC0/7n4D5szcOMgLhL0odeVR8C8gchPlD1Vo/2u3hpB9l6/ qJHkmT1UA7i7vILjoL9nSFhEhTVH0FHjqAQwCVW3ejn34xfYAxKGo6ZzNWEgk95aoe 4MOm6Xvwz7MwqWACwkEvRynv9j8mXS8aAceYWvma0AYtEblqYBYe20AAUiyIsa34DA zxKazbIuVzelQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id AADD2180059 for ; Mon, 21 Oct 2024 13:23:23 +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.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from mail-4323.proton.ch (mail-4323.proton.ch [185.70.43.23]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Mon, 21 Oct 2024 13:23:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gpb.moe; s=protonmail2; t=1729516857; x=1729776057; bh=tx3W+f4f+Ob8j//aaywv9to/1Lwg/BGD10LyNe4KFjE=; h=Date:To:From:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=MwHGoVSwOpjqLltJSDYErhcHWbHpH52Vtorga61Mk1KGz6m07LGZtj6kpoZAE/9Eg 8qcSptY7Wces6bME7mDDu/EaPgp0RmJDCdIb9dFeDXa06eJEUo7P4OnEFYd0c7wRnG 5DusCGfShq8AJg/WLzr9c84byfYW1nw2UhzQLtEV+GBVK5RNQeqMheplgjiGU8Srmr 5d0WHC3zApz2yVnZrG39SILHt88/5UDMPaVxqqYBJwsJ2pHDeMP4oydGeuDA5r7uZn XUmLMExPMbXseTVSbVgNdU8kzVeDai5FxUyjGgvBzfxCg9nUhzQf25vWLyWaLa5u+K 71IZuqvZKTxcw== Date: Mon, 21 Oct 2024 13:20:51 +0000 To: PHP internals Subject: Re: [PHP-DEV] [RFC] Change behaviour of array sort functions to return a copy of the sorted array Message-ID: In-Reply-To: References: Feedback-ID: 96993444:user:proton X-Pm-Message-ID: 2c72e1154c231f5b1b310e3a2988518c86ea69d0 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable From: internals@gpb.moe ("Gina P. Banyard") On Sunday, 20 October 2024 at 18:42, Gina P. Banyard wr= ote: > Hello internals, >=20 > I would like to propose a short RFC to make the return value of the sort(= ) and similar functions more useful: > https://wiki.php.net/rfc/array-sort-return-array I am going to respond out of threads. This RFC does *NOT* change the by-ref parameter passing *NOR* the in-place = sorting of these functions. I don't see why people are thinking this would be changed, as I only ever t= alk about the return value. But I added a sentence in the Unaffected PHP Functionality section. I really struggle to see the benefit of introducing new functions that woul= d do the exact same thing as this RFC, except the in-place modification, as seen by the already existing bikesheed= ing on function naming. For an example, I'm going to pull out my solution to day 1 of the 2022 adve= nts of code: https://github.com/Girgias/advent-of-code/blob/19283e1f5ef503c8a4478e58aaa5= 7ff2fb7164c7/2022/01/puzzle.php#L25 If we had a pipe operator, or if decided to write this less legible with ne= sted calls, it would like this: $elves =3D array_map( 'array_sum', array_map( fn($v) =3D> explode("\n", $v), explode( "\n\n", $input ) ) ); rsort($elves); $top3 =3D array_slice($elves, 0, length: 3); However, if the sort functions would return a useful value instead of `true= ` I could chain it together completely as follows: $top3 =3D array_slice( rsort( array_map( 'array_sum', array_map( fn($v) =3D> explode("\n", $v), explode( "\n\n", $input ) ) ) ), 0, length: 3 ); In either case, the fact the array is sorted in place is something I don't = care, as it is just a temporary step. However, in the current state, I need to stop chaining function calls just = to be able to get the sorted array that I am going to process and discard a= t the next function call. This type of data processing pattern can be generalized to any collection o= f data that needs to be sorted/filtered and processed upon. This RFC is "just" making the return value of these functions *useful*. Would a "proper" functional variant of these functions which do not take th= e input argument by reference be useful? Yes. Is this completely orthogonal to the point of this RFC? Also yes. Best regards, Gina P. Banyard