3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test() {} $nIter = 10000; $argNums = array(0, 1, 2, 3, 4, 5); $func = 'test'; foreach ($argNums as $argNum) { $args = $argNum == 0 ? [] : array_fill(0, $argNum, null); $startTime = microtime(true); for ($i = 0; $i < $nIter; ++$i) { call_user_func_array($func, $args); } $endTime = microtime(true); echo "cufa with $argNum args took ", $endTime - $startTime, "\n"; $startTime = microtime(true); for ($i = 0; $i < $nIter; ++$i) { switch (count($args)) { case 0: $func(); break; case 1: $func($args[0]); break; case 2: $func($args[0], $args[1]); break; case 3: $func($args[0], $args[1], $args[2]); break; case 4: $func($args[0], $args[1], $args[2], $args[3]); break; case 5: $func($args[0], $args[1], $args[2], $args[3], $args[4]); break; default: call_user_func_array($func, $args); break; } } $endTime = microtime(true); echo "switch with $argNum args took ", $endTime - $startTime, "\n"; }
Output for 7.2.0
cufa with 0 args took 0.00073599815368652 switch with 0 args took 0.00066614151000977 cufa with 1 args took 0.00043392181396484 switch with 1 args took 0.00060606002807617 cufa with 2 args took 0.00082111358642578 switch with 2 args took 0.0013580322265625 cufa with 3 args took 0.0010089874267578 switch with 3 args took 0.00078511238098145 cufa with 4 args took 0.00072383880615234 switch with 4 args took 0.0010628700256348 cufa with 5 args took 0.00052905082702637 switch with 5 args took 0.0011658668518066
Output for 7.1.7
cufa with 0 args took 0.00040602684020996 switch with 0 args took 0.00053119659423828 cufa with 1 args took 0.00044918060302734 switch with 1 args took 0.0006859302520752 cufa with 2 args took 0.00046896934509277 switch with 2 args took 0.00079512596130371 cufa with 3 args took 0.00051307678222656 switch with 3 args took 0.00093507766723633 cufa with 4 args took 0.0007479190826416 switch with 4 args took 0.0010819435119629 cufa with 5 args took 0.00056600570678711 switch with 5 args took 0.0013110637664795
Output for 7.1.6
cufa with 0 args took 0.00048589706420898 switch with 0 args took 0.00062298774719238 cufa with 1 args took 0.00048303604125977 switch with 1 args took 0.00073909759521484 cufa with 2 args took 0.00057101249694824 switch with 2 args took 0.00093984603881836 cufa with 3 args took 0.00057506561279297 switch with 3 args took 0.0010080337524414 cufa with 4 args took 0.00056004524230957 switch with 4 args took 0.0011248588562012 cufa with 5 args took 0.00061988830566406 switch with 5 args took 0.0014419555664062
Output for 7.1.5
cufa with 0 args took 0.0010750293731689 switch with 0 args took 0.0014278888702393 cufa with 1 args took 0.0011930465698242 switch with 1 args took 0.0017080307006836 cufa with 2 args took 0.0011630058288574 switch with 2 args took 0.0018861293792725 cufa with 3 args took 0.0012381076812744 switch with 3 args took 0.0021328926086426 cufa with 4 args took 0.0013160705566406 switch with 4 args took 0.0024149417877197 cufa with 5 args took 0.0013940334320068 switch with 5 args took 0.0029730796813965
Output for 7.1.0
cufa with 0 args took 0.00035309791564941 switch with 0 args took 0.00067901611328125 cufa with 1 args took 0.00040698051452637 switch with 1 args took 0.00083303451538086 cufa with 2 args took 0.0004420280456543 switch with 2 args took 0.0010709762573242 cufa with 3 args took 0.00048303604125977 switch with 3 args took 0.0011818408966064 cufa with 4 args took 0.00051712989807129 switch with 4 args took 0.0013270378112793 cufa with 5 args took 0.00055694580078125 switch with 5 args took 0.0014238357543945
Output for 7.0.20
cufa with 0 args took 0.00037884712219238 switch with 0 args took 0.00055122375488281 cufa with 1 args took 0.00042581558227539 switch with 1 args took 0.00091290473937988 cufa with 2 args took 0.00045299530029297 switch with 2 args took 0.00083088874816895 cufa with 3 args took 0.00048613548278809 switch with 3 args took 0.0010151863098145 cufa with 4 args took 0.00075006484985352 switch with 4 args took 0.0012688636779785 cufa with 5 args took 0.00053215026855469 switch with 5 args took 0.001323938369751
Output for 7.0.14
cufa with 0 args took 0.00069284439086914 switch with 0 args took 0.0012218952178955 cufa with 1 args took 0.00078105926513672 switch with 1 args took 0.0014541149139404 cufa with 2 args took 0.00085115432739258 switch with 2 args took 0.0018439292907715 cufa with 3 args took 0.00090694427490234 switch with 3 args took 0.00205397605896 cufa with 4 args took 0.00097417831420898 switch with 4 args took 0.0022611618041992 cufa with 5 args took 0.0010111331939697 switch with 5 args took 0.0024759769439697
Output for 7.0.10
cufa with 0 args took 0.0003969669342041 switch with 0 args took 0.00054192543029785 cufa with 1 args took 0.00045585632324219 switch with 1 args took 0.00067782402038574 cufa with 2 args took 0.00049400329589844 switch with 2 args took 0.0008080005645752 cufa with 3 args took 0.00051999092102051 switch with 3 args took 0.00095510482788086 cufa with 4 args took 0.0005500316619873 switch with 4 args took 0.0016441345214844 cufa with 5 args took 0.00062894821166992 switch with 5 args took 0.0012471675872803
Output for 7.0.9
cufa with 0 args took 0.00049901008605957 switch with 0 args took 0.00065302848815918 cufa with 1 args took 0.00055885314941406 switch with 1 args took 0.00087404251098633 cufa with 2 args took 0.00058698654174805 switch with 2 args took 0.0010488033294678 cufa with 3 args took 0.00064206123352051 switch with 3 args took 0.0014729499816895 cufa with 4 args took 0.00064706802368164 switch with 4 args took 0.001572847366333 cufa with 5 args took 0.00067901611328125 switch with 5 args took 0.0016219615936279
Output for 7.0.8
cufa with 0 args took 0.00053596496582031 switch with 0 args took 0.00081610679626465 cufa with 1 args took 0.00064611434936523 switch with 1 args took 0.0009920597076416 cufa with 2 args took 0.00066089630126953 switch with 2 args took 0.0011861324310303 cufa with 3 args took 0.00066590309143066 switch with 3 args took 0.0013248920440674 cufa with 4 args took 0.00072002410888672 switch with 4 args took 0.0016839504241943 cufa with 5 args took 0.00072789192199707 switch with 5 args took 0.001439094543457
Output for 7.0.7
cufa with 0 args took 0.00052690505981445 switch with 0 args took 0.0007328987121582 cufa with 1 args took 0.0006098747253418 switch with 1 args took 0.00096917152404785 cufa with 2 args took 0.00065708160400391 switch with 2 args took 0.0011239051818848 cufa with 3 args took 0.00069713592529297 switch with 3 args took 0.001288890838623 cufa with 4 args took 0.00072097778320312 switch with 4 args took 0.0016930103302002 cufa with 5 args took 0.00076699256896973 switch with 5 args took 0.001784086227417
Output for 7.0.6
cufa with 0 args took 0.00066399574279785 switch with 0 args took 0.00089311599731445 cufa with 1 args took 0.00077009201049805 switch with 1 args took 0.0011589527130127 cufa with 2 args took 0.00080108642578125 switch with 2 args took 0.0013918876647949 cufa with 3 args took 0.00085592269897461 switch with 3 args took 0.0015990734100342 cufa with 4 args took 0.00087404251098633 switch with 4 args took 0.0020079612731934 cufa with 5 args took 0.00088119506835938 switch with 5 args took 0.0021200180053711
Output for 7.0.5
cufa with 0 args took 0.00060296058654785 switch with 0 args took 0.00082302093505859 cufa with 1 args took 0.00068092346191406 switch with 1 args took 0.0010349750518799 cufa with 2 args took 0.0010440349578857 switch with 2 args took 0.0011880397796631 cufa with 3 args took 0.00072908401489258 switch with 3 args took 0.0013718605041504 cufa with 4 args took 0.00077700614929199 switch with 4 args took 0.0017578601837158 cufa with 5 args took 0.00079202651977539 switch with 5 args took 0.0018961429595947
Output for 7.0.4
cufa with 0 args took 0.00040197372436523 switch with 0 args took 0.00052380561828613 cufa with 1 args took 0.00059008598327637 switch with 1 args took 0.00069189071655273 cufa with 2 args took 0.00078988075256348 switch with 2 args took 0.00088119506835938 cufa with 3 args took 0.00051498413085938 switch with 3 args took 0.00097393989562988 cufa with 4 args took 0.00054502487182617 switch with 4 args took 0.0011799335479736 cufa with 5 args took 0.00057387351989746 switch with 5 args took 0.0014588832855225
Output for 7.0.3
cufa with 0 args took 0.00063109397888184 switch with 0 args took 0.00082206726074219 cufa with 1 args took 0.00072813034057617 switch with 1 args took 0.0011160373687744 cufa with 2 args took 0.00075387954711914 switch with 2 args took 0.0014200210571289 cufa with 3 args took 0.00089716911315918 switch with 3 args took 0.0015730857849121 cufa with 4 args took 0.00090599060058594 switch with 4 args took 0.0019559860229492 cufa with 5 args took 0.00089406967163086 switch with 5 args took 0.0020818710327148
Output for 7.0.2
cufa with 0 args took 0.00060296058654785 switch with 0 args took 0.00080204010009766 cufa with 1 args took 0.00071597099304199 switch with 1 args took 0.0010299682617188 cufa with 2 args took 0.00075697898864746 switch with 2 args took 0.0012390613555908 cufa with 3 args took 0.00086498260498047 switch with 3 args took 0.0014221668243408 cufa with 4 args took 0.00086283683776855 switch with 4 args took 0.0017600059509277 cufa with 5 args took 0.00091099739074707 switch with 5 args took 0.0019359588623047
Output for 7.0.1
cufa with 0 args took 0.00060200691223145 switch with 0 args took 0.00081610679626465 cufa with 1 args took 0.00068306922912598 switch with 1 args took 0.0010428428649902 cufa with 2 args took 0.0007321834564209 switch with 2 args took 0.0012221336364746 cufa with 3 args took 0.00077581405639648 switch with 3 args took 0.0014259815216064 cufa with 4 args took 0.00082111358642578 switch with 4 args took 0.0018680095672607 cufa with 5 args took 0.0009009838104248 switch with 5 args took 0.0020101070404053
Output for 7.0.0
cufa with 0 args took 0.00055098533630371 switch with 0 args took 0.00073409080505371 cufa with 1 args took 0.00063705444335938 switch with 1 args took 0.0010068416595459 cufa with 2 args took 0.00066900253295898 switch with 2 args took 0.0011739730834961 cufa with 3 args took 0.00072002410888672 switch with 3 args took 0.0014200210571289 cufa with 4 args took 0.00075793266296387 switch with 4 args took 0.0017387866973877 cufa with 5 args took 0.00059795379638672 switch with 5 args took 0.0014920234680176
Output for 5.6.28
cufa with 0 args took 0.0049819946289062 switch with 0 args took 0.0024809837341309 cufa with 1 args took 0.0057060718536377 switch with 1 args took 0.0029020309448242 cufa with 2 args took 0.0060369968414307 switch with 2 args took 0.0035068988800049 cufa with 3 args took 0.0062789916992188 switch with 3 args took 0.0037908554077148 cufa with 4 args took 0.0066120624542236 switch with 4 args took 0.0040450096130371 cufa with 5 args took 0.0068330764770508 switch with 5 args took 0.0043189525604248
Output for 5.6.25
cufa with 0 args took 0.0030670166015625 switch with 0 args took 0.0022051334381104 cufa with 1 args took 0.0046780109405518 switch with 1 args took 0.0025370121002197 cufa with 2 args took 0.0049898624420166 switch with 2 args took 0.0028319358825684 cufa with 3 args took 0.0054309368133545 switch with 3 args took 0.0033791065216064 cufa with 4 args took 0.0056610107421875 switch with 4 args took 0.003464937210083 cufa with 5 args took 0.005897045135498 switch with 5 args took 0.0037670135498047
Output for 5.6.24
cufa with 0 args took 0.0039241313934326 switch with 0 args took 0.0022051334381104 cufa with 1 args took 0.0049340724945068 switch with 1 args took 0.0025391578674316 cufa with 2 args took 0.0052380561828613 switch with 2 args took 0.002838134765625 cufa with 3 args took 0.005295991897583 switch with 3 args took 0.00341796875 cufa with 4 args took 0.0055301189422607 switch with 4 args took 0.0034499168395996 cufa with 5 args took 0.0059609413146973 switch with 5 args took 0.0037581920623779
Output for 5.6.23
cufa with 0 args took 0.0045919418334961 switch with 0 args took 0.0032792091369629 cufa with 1 args took 0.0055069923400879 switch with 1 args took 0.0027821063995361 cufa with 2 args took 0.0058541297912598 switch with 2 args took 0.0033001899719238 cufa with 3 args took 0.0059370994567871 switch with 3 args took 0.0032570362091064 cufa with 4 args took 0.0056760311126709 switch with 4 args took 0.0037751197814941 cufa with 5 args took 0.0061981678009033 switch with 5 args took 0.0039160251617432
Output for 5.6.22
cufa with 0 args took 0.0045838356018066 switch with 0 args took 0.0032520294189453 cufa with 1 args took 0.0069220066070557 switch with 1 args took 0.0036039352416992 cufa with 2 args took 0.0073890686035156 switch with 2 args took 0.0039169788360596 cufa with 3 args took 0.006281852722168 switch with 3 args took 0.0035910606384277 cufa with 4 args took 0.0061571598052979 switch with 4 args took 0.0037429332733154 cufa with 5 args took 0.0064630508422852 switch with 5 args took 0.0040090084075928
Output for 5.6.21
cufa with 0 args took 0.0050170421600342 switch with 0 args took 0.0036749839782715 cufa with 1 args took 0.0074291229248047 switch with 1 args took 0.0039680004119873 cufa with 2 args took 0.0079209804534912 switch with 2 args took 0.0043058395385742 cufa with 3 args took 0.0076930522918701 switch with 3 args took 0.0046250820159912 cufa with 4 args took 0.0077388286590576 switch with 4 args took 0.0048251152038574 cufa with 5 args took 0.0079469680786133 switch with 5 args took 0.0048820972442627
Output for 5.6.20
cufa with 0 args took 0.0036449432373047 switch with 0 args took 0.0027542114257812 cufa with 1 args took 0.0059680938720703 switch with 1 args took 0.0030310153961182 cufa with 2 args took 0.0061719417572021 switch with 2 args took 0.0036690235137939 cufa with 3 args took 0.0062680244445801 switch with 3 args took 0.0037531852722168 cufa with 4 args took 0.0069079399108887 switch with 4 args took 0.0041601657867432 cufa with 5 args took 0.0069139003753662 switch with 5 args took 0.0049519538879395
Output for 5.6.19
cufa with 0 args took 0.0044999122619629 switch with 0 args took 0.0030601024627686 cufa with 1 args took 0.006417989730835 switch with 1 args took 0.0033929347991943 cufa with 2 args took 0.0066988468170166 switch with 2 args took 0.0036551952362061 cufa with 3 args took 0.0073549747467041 switch with 3 args took 0.0041210651397705 cufa with 4 args took 0.0069949626922607 switch with 4 args took 0.0042300224304199 cufa with 5 args took 0.0070719718933105 switch with 5 args took 0.0045359134674072
Output for 5.6.18
cufa with 0 args took 0.0046670436859131 switch with 0 args took 0.003432035446167 cufa with 1 args took 0.0073919296264648 switch with 1 args took 0.0028200149536133 cufa with 2 args took 0.005558967590332 switch with 2 args took 0.0032050609588623 cufa with 3 args took 0.0059299468994141 switch with 3 args took 0.0037569999694824 cufa with 4 args took 0.0062990188598633 switch with 4 args took 0.0038869380950928 cufa with 5 args took 0.0063660144805908 switch with 5 args took 0.0041589736938477
Output for 5.6.17
cufa with 0 args took 0.0050840377807617 switch with 0 args took 0.0035760402679443 cufa with 1 args took 0.0069048404693604 switch with 1 args took 0.0045170783996582 cufa with 2 args took 0.0058619976043701 switch with 2 args took 0.0038909912109375 cufa with 3 args took 0.0059149265289307 switch with 3 args took 0.0044729709625244 cufa with 4 args took 0.0060789585113525 switch with 4 args took 0.0046811103820801 cufa with 5 args took 0.0063760280609131 switch with 5 args took 0.0045719146728516
Output for 5.6.16
cufa with 0 args took 0.0052578449249268 switch with 0 args took 0.0026180744171143 cufa with 1 args took 0.0055179595947266 switch with 1 args took 0.0030579566955566 cufa with 2 args took 0.0057680606842041 switch with 2 args took 0.0033431053161621 cufa with 3 args took 0.006134033203125 switch with 3 args took 0.0042500495910645 cufa with 4 args took 0.0055661201477051 switch with 4 args took 0.0035269260406494 cufa with 5 args took 0.0062129497528076 switch with 5 args took 0.0038659572601318
Output for 5.6.15
cufa with 0 args took 0.0036768913269043 switch with 0 args took 0.0026009082794189 cufa with 1 args took 0.0057089328765869 switch with 1 args took 0.0030920505523682 cufa with 2 args took 0.0061819553375244 switch with 2 args took 0.0034811496734619 cufa with 3 args took 0.0063631534576416 switch with 3 args took 0.0038189888000488 cufa with 4 args took 0.0065960884094238 switch with 4 args took 0.0044169425964355 cufa with 5 args took 0.0069708824157715 switch with 5 args took 0.0046989917755127
Output for 5.6.14
cufa with 0 args took 0.0050020217895508 switch with 0 args took 0.0034990310668945 cufa with 1 args took 0.0068709850311279 switch with 1 args took 0.0031318664550781 cufa with 2 args took 0.0064940452575684 switch with 2 args took 0.0038950443267822 cufa with 3 args took 0.0072789192199707 switch with 3 args took 0.0042378902435303 cufa with 4 args took 0.0073111057281494 switch with 4 args took 0.0043489933013916 cufa with 5 args took 0.0074529647827148 switch with 5 args took 0.0045640468597412
Output for 5.6.13
cufa with 0 args took 0.0045199394226074 switch with 0 args took 0.0031378269195557 cufa with 1 args took 0.0065140724182129 switch with 1 args took 0.0035109519958496 cufa with 2 args took 0.0069069862365723 switch with 2 args took 0.0032370090484619 cufa with 3 args took 0.0053350925445557 switch with 3 args took 0.0035080909729004 cufa with 4 args took 0.0069489479064941 switch with 4 args took 0.003878116607666 cufa with 5 args took 0.0065970420837402 switch with 5 args took 0.0041439533233643
Output for 5.6.12
cufa with 0 args took 0.0046138763427734 switch with 0 args took 0.00295090675354 cufa with 1 args took 0.0056300163269043 switch with 1 args took 0.0030159950256348 cufa with 2 args took 0.0061650276184082 switch with 2 args took 0.0035009384155273 cufa with 3 args took 0.0066561698913574 switch with 3 args took 0.0039148330688477 cufa with 4 args took 0.0061850547790527 switch with 4 args took 0.0033988952636719 cufa with 5 args took 0.0058178901672363 switch with 5 args took 0.0036759376525879
Output for 5.6.11
cufa with 0 args took 0.0061571598052979 switch with 0 args took 0.0043270587921143 cufa with 1 args took 0.0091240406036377 switch with 1 args took 0.0046379566192627 cufa with 2 args took 0.0089530944824219 switch with 2 args took 0.0048110485076904 cufa with 3 args took 0.0089700222015381 switch with 3 args took 0.0054199695587158 cufa with 4 args took 0.00895094871521 switch with 4 args took 0.0053329467773438 cufa with 5 args took 0.008814811706543 switch with 5 args took 0.0055160522460938
Output for 5.6.10
cufa with 0 args took 0.005565881729126 switch with 0 args took 0.0040860176086426 cufa with 1 args took 0.0077919960021973 switch with 1 args took 0.0039370059967041 cufa with 2 args took 0.0076861381530762 switch with 2 args took 0.0042681694030762 cufa with 3 args took 0.0085248947143555 switch with 3 args took 0.0047791004180908 cufa with 4 args took 0.0079121589660645 switch with 4 args took 0.0049028396606445 cufa with 5 args took 0.0079920291900635 switch with 5 args took 0.0051109790802002
Output for 5.6.9
cufa with 0 args took 0.0040388107299805 switch with 0 args took 0.0025930404663086 cufa with 1 args took 0.0060601234436035 switch with 1 args took 0.0029759407043457 cufa with 2 args took 0.0062708854675293 switch with 2 args took 0.0033679008483887 cufa with 3 args took 0.0067768096923828 switch with 3 args took 0.0042040348052979 cufa with 4 args took 0.0070760250091553 switch with 4 args took 0.0047671794891357 cufa with 5 args took 0.0075149536132812 switch with 5 args took 0.0053260326385498
Output for 5.6.8
cufa with 0 args took 0.0039660930633545 switch with 0 args took 0.002816915512085 cufa with 1 args took 0.0065538883209229 switch with 1 args took 0.0034351348876953 cufa with 2 args took 0.006788969039917 switch with 2 args took 0.0037081241607666 cufa with 3 args took 0.0069198608398438 switch with 3 args took 0.0042259693145752 cufa with 4 args took 0.0070490837097168 switch with 4 args took 0.0044419765472412 cufa with 5 args took 0.0073628425598145 switch with 5 args took 0.0044581890106201
Output for 5.6.7
cufa with 0 args took 0.0075459480285645 switch with 0 args took 0.0059940814971924 cufa with 1 args took 0.010141849517822 switch with 1 args took 0.005507230758667 cufa with 2 args took 0.010544061660767 switch with 2 args took 0.0057570934295654 cufa with 3 args took 0.010355949401855 switch with 3 args took 0.0065310001373291 cufa with 4 args took 0.010044097900391 switch with 4 args took 0.0058820247650146 cufa with 5 args took 0.0097439289093018 switch with 5 args took 0.0060279369354248
Output for 5.6.6
cufa with 0 args took 0.0045127868652344 switch with 0 args took 0.0033349990844727 cufa with 1 args took 0.0068509578704834 switch with 1 args took 0.0037999153137207 cufa with 2 args took 0.0070400238037109 switch with 2 args took 0.004180908203125 cufa with 3 args took 0.0078260898590088 switch with 3 args took 0.0050618648529053 cufa with 4 args took 0.0085630416870117 switch with 4 args took 0.0039000511169434 cufa with 5 args took 0.0060451030731201 switch with 5 args took 0.0042369365692139
Output for 5.6.5
cufa with 0 args took 0.004317045211792 switch with 0 args took 0.0030579566955566 cufa with 1 args took 0.0063579082489014 switch with 1 args took 0.0033769607543945 cufa with 2 args took 0.0066828727722168 switch with 2 args took 0.0036959648132324 cufa with 3 args took 0.0070481300354004 switch with 3 args took 0.0041060447692871 cufa with 4 args took 0.0070300102233887 switch with 4 args took 0.0041189193725586 cufa with 5 args took 0.0071079730987549 switch with 5 args took 0.0043239593505859
Output for 5.6.4
cufa with 0 args took 0.0054337978363037 switch with 0 args took 0.0032980442047119 cufa with 1 args took 0.0068190097808838 switch with 1 args took 0.0040011405944824 cufa with 2 args took 0.0076520442962646 switch with 2 args took 0.004270076751709 cufa with 3 args took 0.0079078674316406 switch with 3 args took 0.0048179626464844 cufa with 4 args took 0.0074548721313477 switch with 4 args took 0.0043351650238037 cufa with 5 args took 0.0086569786071777 switch with 5 args took 0.0045769214630127
Output for 5.6.3
cufa with 0 args took 0.0032200813293457 switch with 0 args took 0.0024340152740479 cufa with 1 args took 0.0053229331970215 switch with 1 args took 0.0028541088104248 cufa with 2 args took 0.0054740905761719 switch with 2 args took 0.003040075302124 cufa with 3 args took 0.0053839683532715 switch with 3 args took 0.003154993057251 cufa with 4 args took 0.005669116973877 switch with 4 args took 0.0035519599914551 cufa with 5 args took 0.0060338973999023 switch with 5 args took 0.0037178993225098
Output for 5.6.2
cufa with 0 args took 0.0049469470977783 switch with 0 args took 0.0033230781555176 cufa with 1 args took 0.0069420337677002 switch with 1 args took 0.0034639835357666 cufa with 2 args took 0.0074629783630371 switch with 2 args took 0.0042188167572021 cufa with 3 args took 0.0076711177825928 switch with 3 args took 0.0045270919799805 cufa with 4 args took 0.0074088573455811 switch with 4 args took 0.0042171478271484 cufa with 5 args took 0.0077509880065918 switch with 5 args took 0.0046720504760742
Output for 5.6.1
cufa with 0 args took 0.0044798851013184 switch with 0 args took 0.0032508373260498 cufa with 1 args took 0.006803035736084 switch with 1 args took 0.0036399364471436 cufa with 2 args took 0.0070381164550781 switch with 2 args took 0.003943920135498 cufa with 3 args took 0.0071721076965332 switch with 3 args took 0.0044589042663574 cufa with 4 args took 0.0073039531707764 switch with 4 args took 0.0045790672302246 cufa with 5 args took 0.0097188949584961 switch with 5 args took 0.0071671009063721
Output for 5.6.0
cufa with 0 args took 0.0044589042663574 switch with 0 args took 0.0030379295349121 cufa with 1 args took 0.006011962890625 switch with 1 args took 0.0034859180450439 cufa with 2 args took 0.0069060325622559 switch with 2 args took 0.0037379264831543 cufa with 3 args took 0.0071280002593994 switch with 3 args took 0.0043799877166748 cufa with 4 args took 0.0069119930267334 switch with 4 args took 0.0044550895690918 cufa with 5 args took 0.007253885269165 switch with 5 args took 0.0045289993286133
Output for 5.5.38
cufa with 0 args took 0.0042660236358643 switch with 0 args took 0.00313401222229 cufa with 1 args took 0.006493091583252 switch with 1 args took 0.0036258697509766 cufa with 2 args took 0.0067789554595947 switch with 2 args took 0.0039041042327881 cufa with 3 args took 0.0068378448486328 switch with 3 args took 0.0043530464172363 cufa with 4 args took 0.0070500373840332 switch with 4 args took 0.0044798851013184 cufa with 5 args took 0.0071511268615723 switch with 5 args took 0.0047688484191895
Output for 5.5.37
cufa with 0 args took 0.0033929347991943 switch with 0 args took 0.0030388832092285 cufa with 1 args took 0.0057291984558105 switch with 1 args took 0.0036420822143555 cufa with 2 args took 0.0058891773223877 switch with 2 args took 0.0038740634918213 cufa with 3 args took 0.0069859027862549 switch with 3 args took 0.0043509006500244 cufa with 4 args took 0.0070071220397949 switch with 4 args took 0.0046210289001465 cufa with 5 args took 0.0070650577545166 switch with 5 args took 0.0048038959503174
Output for 5.5.36
cufa with 0 args took 0.0043239593505859 switch with 0 args took 0.0031468868255615 cufa with 1 args took 0.0055310726165771 switch with 1 args took 0.0027139186859131 cufa with 2 args took 0.0054190158843994 switch with 2 args took 0.0033578872680664 cufa with 3 args took 0.0061130523681641 switch with 3 args took 0.0034770965576172 cufa with 4 args took 0.0056359767913818 switch with 4 args took 0.0037469863891602 cufa with 5 args took 0.0060601234436035 switch with 5 args took 0.0041069984436035
Output for 5.5.35
cufa with 0 args took 0.004565954208374 switch with 0 args took 0.0032780170440674 cufa with 1 args took 0.006676197052002 switch with 1 args took 0.0037450790405273 cufa with 2 args took 0.0067880153656006 switch with 2 args took 0.0039980411529541 cufa with 3 args took 0.0070559978485107 switch with 3 args took 0.0045027732849121 cufa with 4 args took 0.0072219371795654 switch with 4 args took 0.0046219825744629 cufa with 5 args took 0.0073959827423096 switch with 5 args took 0.0048511028289795
Output for 5.5.34
cufa with 0 args took 0.0037238597869873 switch with 0 args took 0.0028131008148193 cufa with 1 args took 0.0060491561889648 switch with 1 args took 0.0032680034637451 cufa with 2 args took 0.00577712059021 switch with 2 args took 0.0028939247131348 cufa with 3 args took 0.0052189826965332 switch with 3 args took 0.0035419464111328 cufa with 4 args took 0.0069608688354492 switch with 4 args took 0.0038740634918213 cufa with 5 args took 0.0060539245605469 switch with 5 args took 0.0042829513549805
Output for 5.5.33
cufa with 0 args took 0.0048360824584961 switch with 0 args took 0.0033528804779053 cufa with 1 args took 0.0067739486694336 switch with 1 args took 0.0037448406219482 cufa with 2 args took 0.0053989887237549 switch with 2 args took 0.0032069683074951 cufa with 3 args took 0.0063929557800293 switch with 3 args took 0.0041711330413818 cufa with 4 args took 0.006525993347168 switch with 4 args took 0.0043189525604248 cufa with 5 args took 0.0066418647766113 switch with 5 args took 0.0045690536499023
Output for 5.5.32
cufa with 0 args took 0.0044538974761963 switch with 0 args took 0.0032470226287842 cufa with 1 args took 0.0066611766815186 switch with 1 args took 0.0035910606384277 cufa with 2 args took 0.006821870803833 switch with 2 args took 0.0041170120239258 cufa with 3 args took 0.0057909488677979 switch with 3 args took 0.0034241676330566 cufa with 4 args took 0.0056140422821045 switch with 4 args took 0.0036818981170654 cufa with 5 args took 0.0060451030731201 switch with 5 args took 0.003978967666626
Output for 5.5.31
cufa with 0 args took 0.0045680999755859 switch with 0 args took 0.0033359527587891 cufa with 1 args took 0.0053999423980713 switch with 1 args took 0.0028448104858398 cufa with 2 args took 0.0054581165313721 switch with 2 args took 0.0031929016113281 cufa with 3 args took 0.0059061050415039 switch with 3 args took 0.0036230087280273 cufa with 4 args took 0.0059108734130859 switch with 4 args took 0.0037660598754883 cufa with 5 args took 0.0060410499572754 switch with 5 args took 0.0039730072021484
Output for 5.5.30
cufa with 0 args took 0.0046629905700684 switch with 0 args took 0.0034770965576172 cufa with 1 args took 0.0070679187774658 switch with 1 args took 0.0038461685180664 cufa with 2 args took 0.0072271823883057 switch with 2 args took 0.0041680335998535 cufa with 3 args took 0.0074141025543213 switch with 3 args took 0.0046589374542236 cufa with 4 args took 0.0074629783630371 switch with 4 args took 0.0048010349273682 cufa with 5 args took 0.0075640678405762 switch with 5 args took 0.0051720142364502
Output for 5.5.29
cufa with 0 args took 0.0033891201019287 switch with 0 args took 0.0024831295013428 cufa with 1 args took 0.0050790309906006 switch with 1 args took 0.0028579235076904 cufa with 2 args took 0.0053918361663818 switch with 2 args took 0.0031099319458008 cufa with 3 args took 0.0055849552154541 switch with 3 args took 0.0036242008209229 cufa with 4 args took 0.0057311058044434 switch with 4 args took 0.0038168430328369 cufa with 5 args took 0.0059199333190918 switch with 5 args took 0.0040359497070312
Output for 5.5.28
cufa with 0 args took 0.0076589584350586 switch with 0 args took 0.0061101913452148 cufa with 1 args took 0.011001825332642 switch with 1 args took 0.0071139335632324 cufa with 2 args took 0.010268926620483 switch with 2 args took 0.0054478645324707 cufa with 3 args took 0.0089781284332275 switch with 3 args took 0.0057611465454102 cufa with 4 args took 0.0094578266143799 switch with 4 args took 0.0054841041564941 cufa with 5 args took 0.0068521499633789 switch with 5 args took 0.0047581195831299
Output for 5.5.27
cufa with 0 args took 0.0054647922515869 switch with 0 args took 0.0036590099334717 cufa with 1 args took 0.0068910121917725 switch with 1 args took 0.0039260387420654 cufa with 2 args took 0.0073871612548828 switch with 2 args took 0.0053150653839111 cufa with 3 args took 0.0075411796569824 switch with 3 args took 0.0048379898071289 cufa with 4 args took 0.0076258182525635 switch with 4 args took 0.0051131248474121 cufa with 5 args took 0.0077378749847412 switch with 5 args took 0.0053009986877441
Output for 5.5.26
cufa with 0 args took 0.0034410953521729 switch with 0 args took 0.0025370121002197 cufa with 1 args took 0.0052230358123779 switch with 1 args took 0.0029449462890625 cufa with 2 args took 0.0052828788757324 switch with 2 args took 0.0031130313873291 cufa with 3 args took 0.0056140422821045 switch with 3 args took 0.0035769939422607 cufa with 4 args took 0.0056910514831543 switch with 4 args took 0.0038249492645264 cufa with 5 args took 0.0058491230010986 switch with 5 args took 0.0042779445648193
Output for 5.5.25
cufa with 0 args took 0.003648042678833 switch with 0 args took 0.0027279853820801 cufa with 1 args took 0.0057408809661865 switch with 1 args took 0.0031900405883789 cufa with 2 args took 0.0058300495147705 switch with 2 args took 0.0034639835357666 cufa with 3 args took 0.006080150604248 switch with 3 args took 0.0038938522338867 cufa with 4 args took 0.0063538551330566 switch with 4 args took 0.0040600299835205 cufa with 5 args took 0.0064361095428467 switch with 5 args took 0.004382848739624
Output for 5.5.24
cufa with 0 args took 0.0031788349151611 switch with 0 args took 0.0023179054260254 cufa with 1 args took 0.0049021244049072 switch with 1 args took 0.0028131008148193 cufa with 2 args took 0.0052089691162109 switch with 2 args took 0.0030632019042969 cufa with 3 args took 0.0055019855499268 switch with 3 args took 0.0033681392669678 cufa with 4 args took 0.0055291652679443 switch with 4 args took 0.0036759376525879 cufa with 5 args took 0.0058460235595703 switch with 5 args took 0.004019021987915
Output for 5.5.23
cufa with 0 args took 0.004626989364624 switch with 0 args took 0.0033831596374512 cufa with 1 args took 0.007080078125 switch with 1 args took 0.0037398338317871 cufa with 2 args took 0.0071208477020264 switch with 2 args took 0.0042099952697754 cufa with 3 args took 0.0065031051635742 switch with 3 args took 0.0036251544952393 cufa with 4 args took 0.0058250427246094 switch with 4 args took 0.0038411617279053 cufa with 5 args took 0.0060930252075195 switch with 5 args took 0.004166841506958
Output for 5.5.22
cufa with 0 args took 0.0040700435638428 switch with 0 args took 0.0031299591064453 cufa with 1 args took 0.0065560340881348 switch with 1 args took 0.0036101341247559 cufa with 2 args took 0.0067510604858398 switch with 2 args took 0.0040180683135986 cufa with 3 args took 0.006868839263916 switch with 3 args took 0.0044429302215576 cufa with 4 args took 0.0068361759185791 switch with 4 args took 0.0036599636077881 cufa with 5 args took 0.0058591365814209 switch with 5 args took 0.004533052444458
Output for 5.5.21
cufa with 0 args took 0.0050399303436279 switch with 0 args took 0.0036108493804932 cufa with 1 args took 0.0074617862701416 switch with 1 args took 0.0040590763092041 cufa with 2 args took 0.0076949596405029 switch with 2 args took 0.004443883895874 cufa with 3 args took 0.0077860355377197 switch with 3 args took 0.0049560070037842 cufa with 4 args took 0.007904052734375 switch with 4 args took 0.0051140785217285 cufa with 5 args took 0.0081429481506348 switch with 5 args took 0.0054299831390381
Output for 5.5.20
cufa with 0 args took 0.0039510726928711 switch with 0 args took 0.0026648044586182 cufa with 1 args took 0.0054619312286377 switch with 1 args took 0.0033860206604004 cufa with 2 args took 0.0064659118652344 switch with 2 args took 0.0030171871185303 cufa with 3 args took 0.0052468776702881 switch with 3 args took 0.0043148994445801 cufa with 4 args took 0.0056028366088867 switch with 4 args took 0.0039069652557373 cufa with 5 args took 0.0077211856842041 switch with 5 args took 0.0041680335998535
Output for 5.5.19
cufa with 0 args took 0.0059370994567871 switch with 0 args took 0.0034589767456055 cufa with 1 args took 0.007314920425415 switch with 1 args took 0.0037708282470703 cufa with 2 args took 0.0073330402374268 switch with 2 args took 0.004019021987915 cufa with 3 args took 0.007131814956665 switch with 3 args took 0.0048191547393799 cufa with 4 args took 0.0077829360961914 switch with 4 args took 0.0046031475067139 cufa with 5 args took 0.0071380138397217 switch with 5 args took 0.0053658485412598
Output for 5.5.18
cufa with 0 args took 0.0041630268096924 switch with 0 args took 0.0038630962371826 cufa with 1 args took 0.005918025970459 switch with 1 args took 0.0027329921722412 cufa with 2 args took 0.0052931308746338 switch with 2 args took 0.0030879974365234 cufa with 3 args took 0.005295991897583 switch with 3 args took 0.0035400390625 cufa with 4 args took 0.0055739879608154 switch with 4 args took 0.0037839412689209 cufa with 5 args took 0.0058579444885254 switch with 5 args took 0.0041220188140869
Output for 5.5.16
cufa with 0 args took 0.0050449371337891 switch with 0 args took 0.0034749507904053 cufa with 1 args took 0.0073120594024658 switch with 1 args took 0.0039629936218262 cufa with 2 args took 0.0076220035552979 switch with 2 args took 0.0042431354522705 cufa with 3 args took 0.0075428485870361 switch with 3 args took 0.0047919750213623 cufa with 4 args took 0.0078849792480469 switch with 4 args took 0.0049409866333008 cufa with 5 args took 0.007789134979248 switch with 5 args took 0.0051050186157227
Output for 5.5.15
cufa with 0 args took 0.004227876663208 switch with 0 args took 0.0031020641326904 cufa with 1 args took 0.0066699981689453 switch with 1 args took 0.0034050941467285 cufa with 2 args took 0.0068731307983398 switch with 2 args took 0.0028870105743408 cufa with 3 args took 0.0051860809326172 switch with 3 args took 0.0036971569061279 cufa with 4 args took 0.006065845489502 switch with 4 args took 0.0042169094085693 cufa with 5 args took 0.0065300464630127 switch with 5 args took 0.0040299892425537
Output for 5.5.14
cufa with 0 args took 0.0047168731689453 switch with 0 args took 0.0035500526428223 cufa with 1 args took 0.0071709156036377 switch with 1 args took 0.003864049911499 cufa with 2 args took 0.0071358680725098 switch with 2 args took 0.0042078495025635 cufa with 3 args took 0.0073370933532715 switch with 3 args took 0.0046370029449463 cufa with 4 args took 0.0076339244842529 switch with 4 args took 0.0049889087677002 cufa with 5 args took 0.0073380470275879 switch with 5 args took 0.0050370693206787
Output for 5.5.13
cufa with 0 args took 0.0046870708465576 switch with 0 args took 0.0033950805664062 cufa with 1 args took 0.0070309638977051 switch with 1 args took 0.0038740634918213 cufa with 2 args took 0.0071721076965332 switch with 2 args took 0.0041971206665039 cufa with 3 args took 0.007127046585083 switch with 3 args took 0.0046999454498291 cufa with 4 args took 0.0073020458221436 switch with 4 args took 0.004871129989624 cufa with 5 args took 0.0074520111083984 switch with 5 args took 0.0050568580627441
Output for 5.5.12
cufa with 0 args took 0.0046899318695068 switch with 0 args took 0.0034520626068115 cufa with 1 args took 0.0072100162506104 switch with 1 args took 0.004025936126709 cufa with 2 args took 0.0074191093444824 switch with 2 args took 0.0041990280151367 cufa with 3 args took 0.0075008869171143 switch with 3 args took 0.004694938659668 cufa with 4 args took 0.0076520442962646 switch with 4 args took 0.0050299167633057 cufa with 5 args took 0.0077860355377197 switch with 5 args took 0.0056300163269043
Output for 5.5.11
cufa with 0 args took 0.0044980049133301 switch with 0 args took 0.0034050941467285 cufa with 1 args took 0.0070080757141113 switch with 1 args took 0.004004955291748 cufa with 2 args took 0.0072379112243652 switch with 2 args took 0.0042440891265869 cufa with 3 args took 0.007457971572876 switch with 3 args took 0.0038700103759766 cufa with 4 args took 0.0057809352874756 switch with 4 args took 0.0043020248413086 cufa with 5 args took 0.0069210529327393 switch with 5 args took 0.0044589042663574
Output for 5.5.10
cufa with 0 args took 0.0037000179290771 switch with 0 args took 0.0027151107788086 cufa with 1 args took 0.0057258605957031 switch with 1 args took 0.0032110214233398 cufa with 2 args took 0.0058879852294922 switch with 2 args took 0.003425121307373 cufa with 3 args took 0.0061550140380859 switch with 3 args took 0.004047155380249 cufa with 4 args took 0.0062611103057861 switch with 4 args took 0.0037450790405273 cufa with 5 args took 0.0062189102172852 switch with 5 args took 0.0041391849517822
Output for 5.5.9
cufa with 0 args took 0.0037660598754883 switch with 0 args took 0.0028481483459473 cufa with 1 args took 0.0062029361724854 switch with 1 args took 0.0032179355621338 cufa with 2 args took 0.0060300827026367 switch with 2 args took 0.0035648345947266 cufa with 3 args took 0.0061779022216797 switch with 3 args took 0.0039899349212646 cufa with 4 args took 0.0064749717712402 switch with 4 args took 0.0044059753417969 cufa with 5 args took 0.006688117980957 switch with 5 args took 0.0043377876281738
Output for 5.5.8
cufa with 0 args took 0.0049939155578613 switch with 0 args took 0.003715991973877 cufa with 1 args took 0.0077359676361084 switch with 1 args took 0.0043058395385742 cufa with 2 args took 0.007835865020752 switch with 2 args took 0.0045850276947021 cufa with 3 args took 0.0077228546142578 switch with 3 args took 0.0050690174102783 cufa with 4 args took 0.0082900524139404 switch with 4 args took 0.0052490234375 cufa with 5 args took 0.0083670616149902 switch with 5 args took 0.0057361125946045
Output for 5.5.7
cufa with 0 args took 0.0043621063232422 switch with 0 args took 0.0031499862670898 cufa with 1 args took 0.0066649913787842 switch with 1 args took 0.0037009716033936 cufa with 2 args took 0.0069930553436279 switch with 2 args took 0.003809928894043 cufa with 3 args took 0.0069329738616943 switch with 3 args took 0.0044560432434082 cufa with 4 args took 0.0070021152496338 switch with 4 args took 0.0046210289001465 cufa with 5 args took 0.007098913192749 switch with 5 args took 0.004910945892334
Output for 5.5.6
cufa with 0 args took 0.0038919448852539 switch with 0 args took 0.0025250911712646 cufa with 1 args took 0.0055489540100098 switch with 1 args took 0.0031590461730957 cufa with 2 args took 0.005734920501709 switch with 2 args took 0.0031578540802002 cufa with 3 args took 0.0059599876403809 switch with 3 args took 0.0038018226623535 cufa with 4 args took 0.0067811012268066 switch with 4 args took 0.0039432048797607 cufa with 5 args took 0.006659984588623 switch with 5 args took 0.0045440196990967
Output for 5.5.5
cufa with 0 args took 0.0047018527984619 switch with 0 args took 0.00347900390625 cufa with 1 args took 0.0069310665130615 switch with 1 args took 0.0038361549377441 cufa with 2 args took 0.0073881149291992 switch with 2 args took 0.0041258335113525 cufa with 3 args took 0.0071959495544434 switch with 3 args took 0.0046749114990234 cufa with 4 args took 0.007443904876709 switch with 4 args took 0.0049190521240234 cufa with 5 args took 0.0074248313903809 switch with 5 args took 0.0050220489501953
Output for 5.5.4
cufa with 0 args took 0.0034470558166504 switch with 0 args took 0.0023109912872314 cufa with 1 args took 0.0050959587097168 switch with 1 args took 0.0026810169219971 cufa with 2 args took 0.0050480365753174 switch with 2 args took 0.0033020973205566 cufa with 3 args took 0.005389928817749 switch with 3 args took 0.0034868717193604 cufa with 4 args took 0.0055451393127441 switch with 4 args took 0.0038120746612549 cufa with 5 args took 0.006026029586792 switch with 5 args took 0.0040230751037598
Output for 5.5.3
cufa with 0 args took 0.0040521621704102 switch with 0 args took 0.0028529167175293 cufa with 1 args took 0.0060000419616699 switch with 1 args took 0.0041308403015137 cufa with 2 args took 0.006026029586792 switch with 2 args took 0.0029218196868896 cufa with 3 args took 0.0053110122680664 switch with 3 args took 0.0039758682250977 cufa with 4 args took 0.006072998046875 switch with 4 args took 0.0041029453277588 cufa with 5 args took 0.0062110424041748 switch with 5 args took 0.0043158531188965
Output for 5.5.2
cufa with 0 args took 0.0048160552978516 switch with 0 args took 0.0035350322723389 cufa with 1 args took 0.0070061683654785 switch with 1 args took 0.0038809776306152 cufa with 2 args took 0.0072779655456543 switch with 2 args took 0.0041930675506592 cufa with 3 args took 0.0072999000549316 switch with 3 args took 0.0047311782836914 cufa with 4 args took 0.0075099468231201 switch with 4 args took 0.0048930644989014 cufa with 5 args took 0.0076978206634521 switch with 5 args took 0.0052270889282227
Output for 5.5.1
cufa with 0 args took 0.0042040348052979 switch with 0 args took 0.0027370452880859 cufa with 1 args took 0.0057029724121094 switch with 1 args took 0.0032298564910889 cufa with 2 args took 0.0062229633331299 switch with 2 args took 0.0035688877105713 cufa with 3 args took 0.0063438415527344 switch with 3 args took 0.0040769577026367 cufa with 4 args took 0.0065031051635742 switch with 4 args took 0.0042400360107422 cufa with 5 args took 0.006749153137207 switch with 5 args took 0.0045881271362305
Output for 5.5.0
cufa with 0 args took 0.0051009654998779 switch with 0 args took 0.0037989616394043 cufa with 1 args took 0.0074670314788818 switch with 1 args took 0.0042178630828857 cufa with 2 args took 0.0076570510864258 switch with 2 args took 0.0054361820220947 cufa with 3 args took 0.0064899921417236 switch with 3 args took 0.0040891170501709 cufa with 4 args took 0.0064148902893066 switch with 4 args took 0.0045530796051025 cufa with 5 args took 0.0068349838256836 switch with 5 args took 0.0048680305480957
Output for 5.4.45
cufa with 0 args took 0.0034241676330566 switch with 0 args took 0.0025930404663086 cufa with 1 args took 0.0051670074462891 switch with 1 args took 0.0030651092529297 cufa with 2 args took 0.005436897277832 switch with 2 args took 0.0030817985534668 cufa with 3 args took 0.0051629543304443 switch with 3 args took 0.0036540031433105 cufa with 4 args took 0.0056378841400146 switch with 4 args took 0.0039248466491699 cufa with 5 args took 0.005748987197876 switch with 5 args took 0.0041389465332031
Output for 5.4.44
cufa with 0 args took 0.004896879196167 switch with 0 args took 0.0034990310668945 cufa with 1 args took 0.0073528289794922 switch with 1 args took 0.0039908885955811 cufa with 2 args took 0.0075562000274658 switch with 2 args took 0.0043718814849854 cufa with 3 args took 0.007411003112793 switch with 3 args took 0.0048918724060059 cufa with 4 args took 0.0074911117553711 switch with 4 args took 0.0049080848693848 cufa with 5 args took 0.0076010227203369 switch with 5 args took 0.0051338672637939
Output for 5.4.43
cufa with 0 args took 0.0050270557403564 switch with 0 args took 0.0037288665771484 cufa with 1 args took 0.0066888332366943 switch with 1 args took 0.0031700134277344 cufa with 2 args took 0.0062220096588135 switch with 2 args took 0.0042281150817871 cufa with 3 args took 0.0067451000213623 switch with 3 args took 0.0044000148773193 cufa with 4 args took 0.0069410800933838 switch with 4 args took 0.0045120716094971 cufa with 5 args took 0.0069811344146729 switch with 5 args took 0.0047471523284912
Output for 5.4.42
cufa with 0 args took 0.0050628185272217 switch with 0 args took 0.0037071704864502 cufa with 1 args took 0.0073370933532715 switch with 1 args took 0.0040619373321533 cufa with 2 args took 0.0073418617248535 switch with 2 args took 0.0044100284576416 cufa with 3 args took 0.0075440406799316 switch with 3 args took 0.0049979686737061 cufa with 4 args took 0.0076668262481689 switch with 4 args took 0.0050609111785889 cufa with 5 args took 0.007655143737793 switch with 5 args took 0.0052919387817383
Output for 5.4.41
cufa with 0 args took 0.0050818920135498 switch with 0 args took 0.0031189918518066 cufa with 1 args took 0.0063328742980957 switch with 1 args took 0.0038089752197266 cufa with 2 args took 0.0067460536956787 switch with 2 args took 0.0041401386260986 cufa with 3 args took 0.0072081089019775 switch with 3 args took 0.0048239231109619 cufa with 4 args took 0.0073888301849365 switch with 4 args took 0.0049319267272949 cufa with 5 args took 0.0075390338897705 switch with 5 args took 0.0051350593566895
Output for 5.4.40
cufa with 0 args took 0.0049281120300293 switch with 0 args took 0.0037219524383545 cufa with 1 args took 0.0075390338897705 switch with 1 args took 0.0041530132293701 cufa with 2 args took 0.0077519416809082 switch with 2 args took 0.0045139789581299 cufa with 3 args took 0.0077688694000244 switch with 3 args took 0.0048918724060059 cufa with 4 args took 0.0078690052032471 switch with 4 args took 0.0050241947174072 cufa with 5 args took 0.0079929828643799 switch with 5 args took 0.0052361488342285
Output for 5.4.39
cufa with 0 args took 0.0048880577087402 switch with 0 args took 0.0034651756286621 cufa with 1 args took 0.0072999000549316 switch with 1 args took 0.004561185836792 cufa with 2 args took 0.0066399574279785 switch with 2 args took 0.0040600299835205 cufa with 3 args took 0.0072910785675049 switch with 3 args took 0.0047578811645508 cufa with 4 args took 0.007606029510498 switch with 4 args took 0.0050649642944336 cufa with 5 args took 0.0074999332427979 switch with 5 args took 0.0057368278503418
Output for 5.4.38
cufa with 0 args took 0.0049638748168945 switch with 0 args took 0.0036730766296387 cufa with 1 args took 0.0073208808898926 switch with 1 args took 0.004094123840332 cufa with 2 args took 0.0073158740997314 switch with 2 args took 0.0043997764587402 cufa with 3 args took 0.0074501037597656 switch with 3 args took 0.0049300193786621 cufa with 4 args took 0.0076041221618652 switch with 4 args took 0.0042200088500977 cufa with 5 args took 0.0059700012207031 switch with 5 args took 0.0046501159667969
Output for 5.4.37
cufa with 0 args took 0.00506591796875 switch with 0 args took 0.0042030811309814 cufa with 1 args took 0.00649094581604 switch with 1 args took 0.0039370059967041 cufa with 2 args took 0.0070340633392334 switch with 2 args took 0.0044529438018799 cufa with 3 args took 0.0079541206359863 switch with 3 args took 0.0042200088500977 cufa with 4 args took 0.0084049701690674 switch with 4 args took 0.0052750110626221 cufa with 5 args took 0.0078299045562744 switch with 5 args took 0.004892110824585
Output for 5.4.36
cufa with 0 args took 0.0040268898010254 switch with 0 args took 0.00319504737854 cufa with 1 args took 0.0055580139160156 switch with 1 args took 0.0025858879089355 cufa with 2 args took 0.0048470497131348 switch with 2 args took 0.0029449462890625 cufa with 3 args took 0.0051560401916504 switch with 3 args took 0.0037548542022705 cufa with 4 args took 0.0057849884033203 switch with 4 args took 0.003864049911499 cufa with 5 args took 0.0061299800872803 switch with 5 args took 0.0040371417999268
Output for 5.4.35
cufa with 0 args took 0.0040688514709473 switch with 0 args took 0.0029129981994629 cufa with 1 args took 0.0046958923339844 switch with 1 args took 0.0026888847351074 cufa with 2 args took 0.004896879196167 switch with 2 args took 0.002957820892334 cufa with 3 args took 0.0052080154418945 switch with 3 args took 0.0034570693969727 cufa with 4 args took 0.0054929256439209 switch with 4 args took 0.0036799907684326 cufa with 5 args took 0.0057938098907471 switch with 5 args took 0.0039980411529541
Output for 5.4.34
cufa with 0 args took 0.0041329860687256 switch with 0 args took 0.0026390552520752 cufa with 1 args took 0.0057270526885986 switch with 1 args took 0.0031399726867676 cufa with 2 args took 0.0060961246490479 switch with 2 args took 0.0034859180450439 cufa with 3 args took 0.0060441493988037 switch with 3 args took 0.003903865814209 cufa with 4 args took 0.0060470104217529 switch with 4 args took 0.0041191577911377 cufa with 5 args took 0.0063529014587402 switch with 5 args took 0.0043931007385254
Output for 5.4.32
cufa with 0 args took 0.0044019222259521 switch with 0 args took 0.0034019947052002 cufa with 1 args took 0.0069818496704102 switch with 1 args took 0.0038340091705322 cufa with 2 args took 0.0069708824157715 switch with 2 args took 0.0037519931793213 cufa with 3 args took 0.0054810047149658 switch with 3 args took 0.0037178993225098 cufa with 4 args took 0.0057981014251709 switch with 4 args took 0.0040769577026367 cufa with 5 args took 0.0063891410827637 switch with 5 args took 0.0043401718139648
Output for 5.4.31
cufa with 0 args took 0.004478931427002 switch with 0 args took 0.0033290386199951 cufa with 1 args took 0.0066242218017578 switch with 1 args took 0.003777027130127 cufa with 2 args took 0.0067839622497559 switch with 2 args took 0.0041530132293701 cufa with 3 args took 0.0062150955200195 switch with 3 args took 0.0036358833312988 cufa with 4 args took 0.005824089050293 switch with 4 args took 0.0046291351318359 cufa with 5 args took 0.0065071582794189 switch with 5 args took 0.0045731067657471
Output for 5.4.30
cufa with 0 args took 0.0047168731689453 switch with 0 args took 0.0031170845031738 cufa with 1 args took 0.0054988861083984 switch with 1 args took 0.0032689571380615 cufa with 2 args took 0.0067059993743896 switch with 2 args took 0.0036470890045166 cufa with 3 args took 0.005256175994873 switch with 3 args took 0.0035691261291504 cufa with 4 args took 0.0061290264129639 switch with 4 args took 0.0040650367736816 cufa with 5 args took 0.0061678886413574 switch with 5 args took 0.0043349266052246
Output for 5.4.29
cufa with 0 args took 0.0044639110565186 switch with 0 args took 0.0033760070800781 cufa with 1 args took 0.0066847801208496 switch with 1 args took 0.0038459300994873 cufa with 2 args took 0.0068240165710449 switch with 2 args took 0.0041179656982422 cufa with 3 args took 0.0075268745422363 switch with 3 args took 0.004633903503418 cufa with 4 args took 0.0056910514831543 switch with 4 args took 0.0036840438842773 cufa with 5 args took 0.0071351528167725 switch with 5 args took 0.0044839382171631
Output for 5.4.28
cufa with 0 args took 0.0040600299835205 switch with 0 args took 0.0037140846252441 cufa with 1 args took 0.0057048797607422 switch with 1 args took 0.0027570724487305 cufa with 2 args took 0.0052421092987061 switch with 2 args took 0.0032200813293457 cufa with 3 args took 0.0056929588317871 switch with 3 args took 0.0036091804504395 cufa with 4 args took 0.0055980682373047 switch with 4 args took 0.0038290023803711 cufa with 5 args took 0.0059678554534912 switch with 5 args took 0.0042340755462646
Output for 5.4.27
cufa with 0 args took 0.0029308795928955 switch with 0 args took 0.0021820068359375 cufa with 1 args took 0.0045411586761475 switch with 1 args took 0.0026059150695801 cufa with 2 args took 0.004845142364502 switch with 2 args took 0.0029208660125732 cufa with 3 args took 0.0051231384277344 switch with 3 args took 0.0034091472625732 cufa with 4 args took 0.0055038928985596 switch with 4 args took 0.0037970542907715 cufa with 5 args took 0.0058929920196533 switch with 5 args took 0.003993034362793
Output for 5.4.26
cufa with 0 args took 0.0040171146392822 switch with 0 args took 0.0030620098114014 cufa with 1 args took 0.0061972141265869 switch with 1 args took 0.0035910606384277 cufa with 2 args took 0.0063841342926025 switch with 2 args took 0.0040140151977539 cufa with 3 args took 0.0055789947509766 switch with 3 args took 0.0035438537597656 cufa with 4 args took 0.0055429935455322 switch with 4 args took 0.0037140846252441 cufa with 5 args took 0.0059261322021484 switch with 5 args took 0.0043940544128418
Output for 5.4.25
cufa with 0 args took 0.004119873046875 switch with 0 args took 0.0030381679534912 cufa with 1 args took 0.0063130855560303 switch with 1 args took 0.0033791065216064 cufa with 2 args took 0.0064308643341064 switch with 2 args took 0.0037429332733154 cufa with 3 args took 0.0065851211547852 switch with 3 args took 0.0042998790740967 cufa with 4 args took 0.0068440437316895 switch with 4 args took 0.0044510364532471 cufa with 5 args took 0.0069520473480225 switch with 5 args took 0.0046079158782959
Output for 5.4.24
cufa with 0 args took 0.0049459934234619 switch with 0 args took 0.0032880306243896 cufa with 1 args took 0.0066430568695068 switch with 1 args took 0.0035550594329834 cufa with 2 args took 0.0067391395568848 switch with 2 args took 0.0040109157562256 cufa with 3 args took 0.0070979595184326 switch with 3 args took 0.0045039653778076 cufa with 4 args took 0.0070250034332275 switch with 4 args took 0.0046291351318359 cufa with 5 args took 0.0072460174560547 switch with 5 args took 0.004932165145874
Output for 5.4.23
cufa with 0 args took 0.004188060760498 switch with 0 args took 0.0030369758605957 cufa with 1 args took 0.0059897899627686 switch with 1 args took 0.0033469200134277 cufa with 2 args took 0.0061421394348145 switch with 2 args took 0.0042080879211426 cufa with 3 args took 0.0063431262969971 switch with 3 args took 0.0042061805725098 cufa with 4 args took 0.0064420700073242 switch with 4 args took 0.0043609142303467 cufa with 5 args took 0.0076549053192139 switch with 5 args took 0.0052249431610107
Output for 5.4.22
cufa with 0 args took 0.0043208599090576 switch with 0 args took 0.0028688907623291 cufa with 1 args took 0.00496506690979 switch with 1 args took 0.0027680397033691 cufa with 2 args took 0.0051441192626953 switch with 2 args took 0.0031311511993408 cufa with 3 args took 0.0056478977203369 switch with 3 args took 0.0037410259246826 cufa with 4 args took 0.0058069229125977 switch with 4 args took 0.0039069652557373 cufa with 5 args took 0.0059688091278076 switch with 5 args took 0.004105806350708
Output for 5.4.21
cufa with 0 args took 0.0043458938598633 switch with 0 args took 0.0032570362091064 cufa with 1 args took 0.0073380470275879 switch with 1 args took 0.0042150020599365 cufa with 2 args took 0.0069921016693115 switch with 2 args took 0.0044710636138916 cufa with 3 args took 0.0074319839477539 switch with 3 args took 0.0045928955078125 cufa with 4 args took 0.0076208114624023 switch with 4 args took 0.0047330856323242 cufa with 5 args took 0.0075199604034424 switch with 5 args took 0.0052289962768555
Output for 5.4.20
cufa with 0 args took 0.0043430328369141 switch with 0 args took 0.0025770664215088 cufa with 1 args took 0.0053060054779053 switch with 1 args took 0.0033059120178223 cufa with 2 args took 0.0061690807342529 switch with 2 args took 0.0036849975585938 cufa with 3 args took 0.0063889026641846 switch with 3 args took 0.0037360191345215 cufa with 4 args took 0.005497932434082 switch with 4 args took 0.003896951675415 cufa with 5 args took 0.0061891078948975 switch with 5 args took 0.0043330192565918
Output for 5.4.19
cufa with 0 args took 0.0047860145568848 switch with 0 args took 0.0034220218658447 cufa with 1 args took 0.0064351558685303 switch with 1 args took 0.0030758380889893 cufa with 2 args took 0.0059130191802979 switch with 2 args took 0.0039129257202148 cufa with 3 args took 0.0062429904937744 switch with 3 args took 0.0034620761871338 cufa with 4 args took 0.0055229663848877 switch with 4 args took 0.0039680004119873 cufa with 5 args took 0.0062789916992188 switch with 5 args took 0.0041320323944092
Output for 5.4.18
cufa with 0 args took 0.0048530101776123 switch with 0 args took 0.0036468505859375 cufa with 1 args took 0.0068769454956055 switch with 1 args took 0.0034129619598389 cufa with 2 args took 0.0064198970794678 switch with 2 args took 0.0037961006164551 cufa with 3 args took 0.006619930267334 switch with 3 args took 0.004274845123291 cufa with 4 args took 0.006688117980957 switch with 4 args took 0.0043690204620361 cufa with 5 args took 0.0070919990539551 switch with 5 args took 0.0049071311950684
Output for 5.4.17
cufa with 0 args took 0.0040218830108643 switch with 0 args took 0.002964973449707 cufa with 1 args took 0.0057239532470703 switch with 1 args took 0.0033321380615234 cufa with 2 args took 0.0060420036315918 switch with 2 args took 0.0036270618438721 cufa with 3 args took 0.0063598155975342 switch with 3 args took 0.0040891170501709 cufa with 4 args took 0.0065979957580566 switch with 4 args took 0.0043718814849854 cufa with 5 args took 0.0067069530487061 switch with 5 args took 0.0044319629669189
Output for 5.4.16
cufa with 0 args took 0.0043919086456299 switch with 0 args took 0.0032339096069336 cufa with 1 args took 0.0065879821777344 switch with 1 args took 0.0037539005279541 cufa with 2 args took 0.0071010589599609 switch with 2 args took 0.0036931037902832 cufa with 3 args took 0.0053369998931885 switch with 3 args took 0.0035610198974609 cufa with 4 args took 0.0062398910522461 switch with 4 args took 0.0038280487060547 cufa with 5 args took 0.0058219432830811 switch with 5 args took 0.0044701099395752
Output for 5.4.15
cufa with 0 args took 0.0036990642547607 switch with 0 args took 0.0028228759765625 cufa with 1 args took 0.0059349536895752 switch with 1 args took 0.0034298896789551 cufa with 2 args took 0.0063810348510742 switch with 2 args took 0.0037610530853271 cufa with 3 args took 0.0056748390197754 switch with 3 args took 0.0034780502319336 cufa with 4 args took 0.0056579113006592 switch with 4 args took 0.0042209625244141 cufa with 5 args took 0.0064661502838135 switch with 5 args took 0.0044548511505127
Output for 5.4.14
cufa with 0 args took 0.0039920806884766 switch with 0 args took 0.0029928684234619 cufa with 1 args took 0.006295919418335 switch with 1 args took 0.0035719871520996 cufa with 2 args took 0.0067207813262939 switch with 2 args took 0.0038778781890869 cufa with 3 args took 0.0068941116333008 switch with 3 args took 0.0047340393066406 cufa with 4 args took 0.0059800148010254 switch with 4 args took 0.0037188529968262 cufa with 5 args took 0.0058348178863525 switch with 5 args took 0.0040080547332764
Output for 5.4.13
cufa with 0 args took 0.0046868324279785 switch with 0 args took 0.0038259029388428 cufa with 1 args took 0.0054061412811279 switch with 1 args took 0.0030908584594727 cufa with 2 args took 0.0062799453735352 switch with 2 args took 0.0034749507904053 cufa with 3 args took 0.0066468715667725 switch with 3 args took 0.0039200782775879 cufa with 4 args took 0.0065360069274902 switch with 4 args took 0.0042359828948975 cufa with 5 args took 0.0064380168914795 switch with 5 args took 0.004396915435791
Output for 5.4.12
cufa with 0 args took 0.004929780960083 switch with 0 args took 0.0028889179229736 cufa with 1 args took 0.0065908432006836 switch with 1 args took 0.0031821727752686 cufa with 2 args took 0.0059480667114258 switch with 2 args took 0.004601001739502 cufa with 3 args took 0.0089068412780762 switch with 3 args took 0.0057621002197266 cufa with 4 args took 0.0064032077789307 switch with 4 args took 0.0043489933013916 cufa with 5 args took 0.006598949432373 switch with 5 args took 0.0045220851898193
Output for 5.4.11
cufa with 0 args took 0.0037541389465332 switch with 0 args took 0.0030360221862793 cufa with 1 args took 0.0054957866668701 switch with 1 args took 0.0031571388244629 cufa with 2 args took 0.0062220096588135 switch with 2 args took 0.003432035446167 cufa with 3 args took 0.0059471130371094 switch with 3 args took 0.0038690567016602 cufa with 4 args took 0.0063920021057129 switch with 4 args took 0.0044519901275635 cufa with 5 args took 0.0065340995788574 switch with 5 args took 0.0049710273742676
Output for 5.4.10
cufa with 0 args took 0.0048458576202393 switch with 0 args took 0.003093957901001 cufa with 1 args took 0.0061280727386475 switch with 1 args took 0.0035951137542725 cufa with 2 args took 0.0066409111022949 switch with 2 args took 0.0039148330688477 cufa with 3 args took 0.0066208839416504 switch with 3 args took 0.0042939186096191 cufa with 4 args took 0.0067598819732666 switch with 4 args took 0.0044991970062256 cufa with 5 args took 0.0070371627807617 switch with 5 args took 0.0049409866333008
Output for 5.4.9
cufa with 0 args took 0.0051400661468506 switch with 0 args took 0.0037169456481934 cufa with 1 args took 0.007439136505127 switch with 1 args took 0.0042538642883301 cufa with 2 args took 0.0079131126403809 switch with 2 args took 0.0045409202575684 cufa with 3 args took 0.0077040195465088 switch with 3 args took 0.004990816116333 cufa with 4 args took 0.0078208446502686 switch with 4 args took 0.0051789283752441 cufa with 5 args took 0.0078868865966797 switch with 5 args took 0.0054190158843994
Output for 5.4.8
cufa with 0 args took 0.0051779747009277 switch with 0 args took 0.0038609504699707 cufa with 1 args took 0.0076899528503418 switch with 1 args took 0.0043201446533203 cufa with 2 args took 0.0079491138458252 switch with 2 args took 0.0047781467437744 cufa with 3 args took 0.0082199573516846 switch with 3 args took 0.0053730010986328 cufa with 4 args took 0.0077581405639648 switch with 4 args took 0.0042650699615479 cufa with 5 args took 0.0068588256835938 switch with 5 args took 0.0051689147949219
Output for 5.4.7
cufa with 0 args took 0.0037300586700439 switch with 0 args took 0.0027189254760742 cufa with 1 args took 0.0058140754699707 switch with 1 args took 0.0026829242706299 cufa with 2 args took 0.0049350261688232 switch with 2 args took 0.0029430389404297 cufa with 3 args took 0.0058619976043701 switch with 3 args took 0.0036401748657227 cufa with 4 args took 0.005903959274292 switch with 4 args took 0.0038051605224609 cufa with 5 args took 0.0061898231506348 switch with 5 args took 0.0040831565856934
Output for 5.4.6
cufa with 0 args took 0.0040481090545654 switch with 0 args took 0.0029280185699463 cufa with 1 args took 0.0062592029571533 switch with 1 args took 0.0035421848297119 cufa with 2 args took 0.0062410831451416 switch with 2 args took 0.0032429695129395 cufa with 3 args took 0.0052170753479004 switch with 3 args took 0.0042769908905029 cufa with 4 args took 0.0061898231506348 switch with 4 args took 0.0040521621704102 cufa with 5 args took 0.0063169002532959 switch with 5 args took 0.0043461322784424
Output for 5.4.5
cufa with 0 args took 0.0044460296630859 switch with 0 args took 0.0034310817718506 cufa with 1 args took 0.0065958499908447 switch with 1 args took 0.0035750865936279 cufa with 2 args took 0.0066490173339844 switch with 2 args took 0.0039629936218262 cufa with 3 args took 0.0067999362945557 switch with 3 args took 0.0045580863952637 cufa with 4 args took 0.0071690082550049 switch with 4 args took 0.0046820640563965 cufa with 5 args took 0.0070359706878662 switch with 5 args took 0.0047428607940674
Output for 5.4.4
cufa with 0 args took 0.0034849643707275 switch with 0 args took 0.0025689601898193 cufa with 1 args took 0.0051770210266113 switch with 1 args took 0.0029149055480957 cufa with 2 args took 0.0048360824584961 switch with 2 args took 0.0029609203338623 cufa with 3 args took 0.0051960945129395 switch with 3 args took 0.0033950805664062 cufa with 4 args took 0.0054957866668701 switch with 4 args took 0.0036330223083496 cufa with 5 args took 0.0058050155639648 switch with 5 args took 0.0039520263671875
Output for 5.4.3
cufa with 0 args took 0.0039951801300049 switch with 0 args took 0.0030739307403564 cufa with 1 args took 0.0060358047485352 switch with 1 args took 0.0034239292144775 cufa with 2 args took 0.0063378810882568 switch with 2 args took 0.0034379959106445 cufa with 3 args took 0.0051238536834717 switch with 3 args took 0.0034410953521729 cufa with 4 args took 0.0054440498352051 switch with 4 args took 0.0036890506744385 cufa with 5 args took 0.0059010982513428 switch with 5 args took 0.0041000843048096
Output for 5.4.2
cufa with 0 args took 0.0041849613189697 switch with 0 args took 0.0032238960266113 cufa with 1 args took 0.0050640106201172 switch with 1 args took 0.002903938293457 cufa with 2 args took 0.0052149295806885 switch with 2 args took 0.0030579566955566 cufa with 3 args took 0.0054030418395996 switch with 3 args took 0.0034830570220947 cufa with 4 args took 0.005547046661377 switch with 4 args took 0.0036928653717041 cufa with 5 args took 0.0058560371398926 switch with 5 args took 0.0041260719299316
Output for 5.4.1
cufa with 0 args took 0.0040078163146973 switch with 0 args took 0.0026350021362305 cufa with 1 args took 0.005763053894043 switch with 1 args took 0.0032050609588623 cufa with 2 args took 0.0059170722961426 switch with 2 args took 0.0040171146392822 cufa with 3 args took 0.0063681602478027 switch with 3 args took 0.0041909217834473 cufa with 4 args took 0.0068747997283936 switch with 4 args took 0.0045928955078125 cufa with 5 args took 0.0069079399108887 switch with 5 args took 0.0045289993286133
Output for 5.4.0
cufa with 0 args took 0.0043849945068359 switch with 0 args took 0.0032451152801514 cufa with 1 args took 0.0063409805297852 switch with 1 args took 0.0036590099334717 cufa with 2 args took 0.0071721076965332 switch with 2 args took 0.0038571357727051 cufa with 3 args took 0.0068471431732178 switch with 3 args took 0.0043280124664307 cufa with 4 args took 0.0069890022277832 switch with 4 args took 0.0049049854278564 cufa with 5 args took 0.0076560974121094 switch with 5 args took 0.0047538280487061
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/27UIv on line 12
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/27UIv on line 12
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/27UIv on line 12
Process exited with code 255.

preferences:
159.28 ms | 401 KiB | 216 Q