£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyʦ•ꎅȮFÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~芩ÊǍí`ÔÑ©ú뙵'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶êםӼ㞪éUWŸÈË%DÒÕ¬ï‘]/Åcx ‰ï2ß]ä6G[]S£Ôϯrs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ ¯¹ægƒÛowЍø^d™ý½ßB7áyMä9ÜÖUã !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --TEST-- BitSet BitSet::previousSetBit() - Verifies the previous set bit is valid based on the provided index --SKIPIF-- --FILE-- set(20); $b->set(18); try { var_dump($b->previousSetBit(0)); } catch (Exception $e) { var_dump(get_class($e).': '.$e->getMessage()); } var_dump($b->previousSetBit(20)); var_dump($b->previousSetBit(18)); $b->set(1); var_dump($b->previousSetBit(5)); try { var_dump($b->previousSetBit(65)); } catch (Exception $e) { var_dump(get_class($e).': '.$e->getMessage()); } ?> --EXPECT-- string(75) "InvalidArgumentException: There are no bits smaller than the index provided" int(18) bool(false) int(1) string(93) "OutOfRangeException: The specified index parameter exceeds the total number of bits available"