Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:114189 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 57749 invoked from network); 26 Apr 2021 13:38:45 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 26 Apr 2021 13:38:45 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 2E4471804F3 for ; Mon, 26 Apr 2021 06:42:48 -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,RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.2 X-Spam-Virus: No X-Envelope-From: Received: from mail-yb1-f181.google.com (mail-yb1-f181.google.com [209.85.219.181]) (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 ; Mon, 26 Apr 2021 06:42:47 -0700 (PDT) Received: by mail-yb1-f181.google.com with SMTP id e8so4963819ybq.11 for ; Mon, 26 Apr 2021 06:42:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=datadoghq.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=oXv3IlcVBkd0vBOV+HfM8w+BBPt9rYy3MZlaTImajp0=; b=aUUGr3WLv1uwNsme2tXELzFS8e1LlPttMjlLXeMe1G2vC8brLTRdcv1EeHekhuhMu3 yzr1PyJrkUwAsC4HlKlGCxojMrZ7kQVNIjpyNATmfphcZ8x9uBV70QFxYNY4T3ARI8Dy AfMCojG7QT5jZhpFv5bLUiXlpDSWdj2MFM73c= 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=oXv3IlcVBkd0vBOV+HfM8w+BBPt9rYy3MZlaTImajp0=; b=m6Ca+lGRs5GWjZkBof+xi1OKIsJmCWId+JWxjX245yTZRtvGid6ykAkyLx4z8oDTWv 0xpVpCQaa3lXPUUhpgUcEZb6EDBMEkZojtcccgbhoC08YmJaj9ct+eZ9AWaEnlraq7HT mcmjtd5MCDUaupUDznA3z2lBEQPgfdt7hFKz52GpX7an778HzPC0Xu1MaNj7O8/zyYh5 URR4AqeSjGYW4XSCpWcMnGqoDjcx9Ci/2Tplbevo7Oi53cOuZbVEQc3Wo7YngELDWrmG wkzaOvtdg4I789s5CJpVArul+0R3cP3Jw2XP9pSlzf62KQzpOHr4gkhMLq0hcpHYV76n V9aQ== X-Gm-Message-State: AOAM5338DaqdR5p8qm+iSIvnAJ7VQIUavD4+sZj99hsRqZ/b4te3dy25 MN4Oh2dOrtd8gWTQQr2TD7cg4gOSE5u6w4I94uCn2A== X-Google-Smtp-Source: ABdhPJz4UlYHv/SDwG/upuLk0c16u6TfmiyMJ7e+wenUpE73VjN5ZDpbVYeE1NocxQcFBU/qqYS+cvXrlSRJJHi2U20= X-Received: by 2002:a25:5589:: with SMTP id j131mr21698698ybb.402.1619444565336; Mon, 26 Apr 2021 06:42:45 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Reply-To: Levi Morrison Date: Mon, 26 Apr 2021 07:42:34 -0600 Message-ID: To: Lynn Cc: Larry Garfield , php internals Content-Type: text/plain; charset="UTF-8" Subject: Re: [PHP-DEV] [RFC] Partial function application From: internals@lists.php.net ("Levi Morrison via internals") > If this is indeed the scenario, would it be worth adding a syntax to > indicate _all_ parameters can be placeholders? When a signature has > multiple arguments, `toString(?, ?, ?, ?)` could become `toString(...?)` or > maybe something like `toString(*)`? At the moment, there isn't any difference in `foo(?)` and `foo(?, ?, ?, ?, ?, ?, ?, ?)`. If there is one placeholder, then it will bind (or fix) the non-placeholder arguments and then create a closure-like with a signature of the remaining parameters. Adding more placeholders does not change anything, except to adjust positions: foo(?, $bar, ?, $baz) In this case the two placeholders are meaningful because they adjust which positional arguments are bound. This is the only difference in behavior in one placeholder or more. In an earlier version of the RFC I had `...` so you could write `foo(...)`. Some of the RFC authors didn't like this, because it was functionally no different and brought up "when to use ? and when to use ..." as a question.