whereStrict() public method

Filter items by the given key value pair using strict comparison.
public whereStrict ( string $key, mixed $value ) : static
$key string
$value mixed
return static
 public function testWhereStrict()
 {
     $c = new Collection([['v' => 3], ['v' => '3']]);
     $this->assertEquals([['v' => 3]], $c->whereStrict('v', 3)->values()->all());
 }