public function testEvery() { $result = $this->_List->every(function ($value) { return \is_string($value); }); $this->assertFalse($result); }
/** * Whether no bits are set * @return bool */ public function none() { return $this->_List->every(function ($v) { return $v === false; }); }