Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:103357 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 54576 invoked from network); 22 Oct 2018 07:49:20 -0000 Received: from unknown (HELO mail-lf1-f68.google.com) (209.85.167.68) by pb1.pair.com with SMTP; 22 Oct 2018 07:49:20 -0000 Received: by mail-lf1-f68.google.com with SMTP id x24-v6so13474366lfe.5 for ; Sun, 21 Oct 2018 21:03:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=2lWljsN2V/ovs/SnBkNadxz7DmdB3ne4jqiBUJqxx5M=; b=iLVgAXdcE32j28Elro5Rkvl4k6zismkDCo/G1QZBr1H+zA8iYz95d4z2JZOcy/eE91 lEJk7ALmf9aWLLCy5S4FfY9fdyv4ASyqgC5bI9FvdzuWK5KvwfPVJzSgmSr++LyiXeSV qGgqKInYueh3zBn8xfE3NVPRn7jrKOnO9joCdFTfD3e/MSbVIdeA6Tn8H1uxLNRyBjQj jn/EIfFVvoDWmVypFEomEns+9FNfUbzXBVrXTYOv5JXHHEXEmJcDlhzVFXaimknwCqJU yXMNK2LT57tz/4j1OMAkFOaAMS4AoNHInmP7fq+qi5KY9lz+5x2xLOX7bxtWA46dmr8b Xgrg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=2lWljsN2V/ovs/SnBkNadxz7DmdB3ne4jqiBUJqxx5M=; b=XTrbOOH2OEMtQf94qziK10LwJhU5u0xtwRfmRx5FVhzuUPpFelGhzFdjiAVNyvNh9x 943RWqBKzPII6jJQjzeXhfJgxQoc4NgfWdWqj4A5IyfJGJwuJ3YDvwl4QalriMZu5lEv aEKW2qrg38VRlzNOkJN1V6GhSpdBYera4g7oaMAKrKKCyohX64MHET3ESFAKryMbbrqE prVSxSOB5vjJUgJ8IBt5iWhnVshveG/YGOx679yT3Y9FSn0vCUC6gnCUw0Oh7XP9Z8E7 4WEZT9+KiBDLK8zkKZ1y6zFXMSz1Ns42P4iuZhnwvffXkP2m5K/I1kPPSS1xJ35KZ7KV f+Lg== X-Gm-Message-State: ABuFfogu4JVgKjH3Wue/g6QguF44oB0wcj97EGcq6LciwRkvaNuT/4mp E+DPsKJ0vfc6bJdXffzihVnQp+ET8ZhxlRcR+7B9e1fU X-Google-Smtp-Source: ACcGV60Lub88lJ4HHRl7HTO0jm0dOyDHMyD0acmGpdM/StmOnNXEFVJE6g/kFDCmtGPpo80V9c5eXrc9oV8rZI/cvNo= X-Received: by 2002:a19:73d8:: with SMTP id h85mr7913527lfk.69.1540181032118; Sun, 21 Oct 2018 21:03:52 -0700 (PDT) MIME-Version: 1.0 Date: Mon, 22 Oct 2018 00:03:41 -0400 Message-ID: To: internals@lists.php.net Content-Type: multipart/alternative; boundary="0000000000004f2e3c0578c957a7" Subject: [PATCH] Implementing array_every() and array_any() From: bugreportuser+php.internals@gmail.com (bugreportuser) --0000000000004f2e3c0578c957a7 Content-Type: text/plain; charset="UTF-8" Hi everyone, A patch for array_every() and array_any() was abandoned from inactivity, so I wrote a new patch for it: https://github.com/php/php-src/pull/3597 There was never an internals@ discussion that I can find, but there are some comments on the old pull request. Most of what I changed was not including a traversable type in the same patch, since https://bugs.php.net/bug.php?id=76865 was opened. Any thoughts/comments? Thanks --0000000000004f2e3c0578c957a7--