Re: RE: RFC: expectations/assertions

From: Date: Wed, 05 Feb 2014 21:10:22 +0000
Subject: Re: RE: RFC: expectations/assertions
References: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17  Groups: php.internals 
Request: Send a blank email to [email protected] to get a copy of this message
On Thu, Feb 6, 2014 at 5:49 AM, Yasuo Ohgaki <[email protected]> wrote:

> I agree, some thing like this is needed to call closure or pass arguments
> to assert() then call.


If we allow to pass arguments, it would be something like

assert(
  function($arg1, $arg2) {
    return $arg1 > $arg2;
  },
  'Do not pass bad value',
  [$arg1, $arg2]
);

It looks nicer than

assert(
  ($f = function($arg1, $arg2) {
     return $arg1 > $arg2;
  })
  &&
  ($f($arg1, $arg2)),
  'Do not pass bad value'
);

Regards,

--
Yasuo Ohgaki
[email protected]


Thread (44 messages)

« previous php.internals (#72297) next »