3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test() {} $nIter = 100000; $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.0050349235534668 switch with 0 args took 0.0055379867553711 cufa with 1 args took 0.009376049041748 switch with 1 args took 0.0068731307983398 cufa with 2 args took 0.0063979625701904 switch with 2 args took 0.0084159374237061 cufa with 3 args took 0.0070981979370117 switch with 3 args took 0.013624906539917 cufa with 4 args took 0.0061249732971191 switch with 4 args took 0.0099949836730957 cufa with 5 args took 0.0052728652954102 switch with 5 args took 0.010164022445679
Output for 7.1.7
cufa with 0 args took 0.0038738250732422 switch with 0 args took 0.0053598880767822 cufa with 1 args took 0.0044059753417969 switch with 1 args took 0.0068130493164062 cufa with 2 args took 0.0046961307525635 switch with 2 args took 0.0079789161682129 cufa with 3 args took 0.0049901008605957 switch with 3 args took 0.0091698169708252 cufa with 4 args took 0.005281925201416 switch with 4 args took 0.010397911071777 cufa with 5 args took 0.00553297996521 switch with 5 args took 0.013113021850586
Output for 7.1.6
cufa with 0 args took 0.0095369815826416 switch with 0 args took 0.013073921203613 cufa with 1 args took 0.010318040847778 switch with 1 args took 0.014384984970093 cufa with 2 args took 0.009207010269165 switch with 2 args took 0.014548063278198 cufa with 3 args took 0.0086569786071777 switch with 3 args took 0.01493501663208 cufa with 4 args took 0.0082218647003174 switch with 4 args took 0.015405893325806 cufa with 5 args took 0.0078990459442139 switch with 5 args took 0.017933130264282
Output for 7.1.5
cufa with 0 args took 0.0081450939178467 switch with 0 args took 0.010854005813599 cufa with 1 args took 0.0084609985351562 switch with 1 args took 0.012367963790894 cufa with 2 args took 0.0081799030303955 switch with 2 args took 0.013999938964844 cufa with 3 args took 0.0081009864807129 switch with 3 args took 0.013327121734619 cufa with 4 args took 0.0079998970031738 switch with 4 args took 0.013941049575806 cufa with 5 args took 0.0076949596405029 switch with 5 args took 0.016454935073853
Output for 7.1.0
cufa with 0 args took 0.0035140514373779 switch with 0 args took 0.0067770481109619 cufa with 1 args took 0.0040769577026367 switch with 1 args took 0.0083849430084229 cufa with 2 args took 0.0044589042663574 switch with 2 args took 0.010607004165649 cufa with 3 args took 0.0048339366912842 switch with 3 args took 0.011845827102661 cufa with 4 args took 0.0052468776702881 switch with 4 args took 0.013033151626587 cufa with 5 args took 0.0055749416351318 switch with 5 args took 0.014295101165771
Output for 7.0.20
cufa with 0 args took 0.0041639804840088 switch with 0 args took 0.0071189403533936 cufa with 1 args took 0.0051920413970947 switch with 1 args took 0.0090029239654541 cufa with 2 args took 0.0080628395080566 switch with 2 args took 0.018315076828003 cufa with 3 args took 0.0063791275024414 switch with 3 args took 0.015834093093872 cufa with 4 args took 0.012047052383423 switch with 4 args took 0.018257141113281 cufa with 5 args took 0.0061860084533691 switch with 5 args took 0.015277862548828
Output for 7.0.14
cufa with 0 args took 0.0063009262084961 switch with 0 args took 0.010765075683594 cufa with 1 args took 0.0070760250091553 switch with 1 args took 0.012730836868286 cufa with 2 args took 0.0070400238037109 switch with 2 args took -0.012265920639038 cufa with 3 args took -0.0068449974060059 switch with 3 args took -0.015146017074585 cufa with 4 args took -0.0067019462585449 switch with 4 args took -0.015739917755127 cufa with 5 args took -0.0066099166870117 switch with 5 args took -0.016256093978882
Output for 7.0.10
cufa with 0 args took 0.004065990447998 switch with 0 args took 0.0061390399932861 cufa with 1 args took 0.0044469833374023 switch with 1 args took 0.0073981285095215 cufa with 2 args took 0.0044929981231689 switch with 2 args took 0.008526086807251 cufa with 3 args took 0.0050389766693115 switch with 3 args took 0.0092799663543701 cufa with 4 args took 0.0048098564147949 switch with 4 args took 0.011691808700562 cufa with 5 args took 0.0054829120635986 switch with 5 args took 0.012538909912109
Output for 7.0.9
cufa with 0 args took 0.006727933883667 switch with 0 args took 0.0091421604156494 cufa with 1 args took 0.0070178508758545 switch with 1 args took 0.00913405418396 cufa with 2 args took 0.0068919658660889 switch with 2 args took 0.011484861373901 cufa with 3 args took 0.0065560340881348 switch with 3 args took 0.012202978134155 cufa with 4 args took 0.0065820217132568 switch with 4 args took 0.014640092849731 cufa with 5 args took 0.0059552192687988 switch with 5 args took 0.013885021209717
Output for 7.0.8
cufa with 0 args took 0.0033571720123291 switch with 0 args took 0.0046100616455078 cufa with 1 args took 0.0037620067596436 switch with 1 args took 0.0061829090118408 cufa with 2 args took 0.0039980411529541 switch with 2 args took 0.0073330402374268 cufa with 3 args took 0.0042281150817871 switch with 3 args took 0.0082769393920898 cufa with 4 args took 0.0044248104095459 switch with 4 args took 0.010578870773315 cufa with 5 args took 0.0045731067657471 switch with 5 args took 0.011283874511719
Output for 7.0.7
cufa with 0 args took 0.0041458606719971 switch with 0 args took 0.0055000782012939 cufa with 1 args took 0.0045299530029297 switch with 1 args took 0.0070080757141113 cufa with 2 args took 0.0048098564147949 switch with 2 args took 0.0082590579986572 cufa with 3 args took 0.0050110816955566 switch with 3 args took 0.0098390579223633 cufa with 4 args took 0.0052461624145508 switch with 4 args took 0.01253604888916 cufa with 5 args took 0.0055301189422607 switch with 5 args took 0.013526201248169
Output for 7.0.6
cufa with 0 args took 0.0041050910949707 switch with 0 args took 0.005511999130249 cufa with 1 args took 0.0046889781951904 switch with 1 args took 0.0070168972015381 cufa with 2 args took 0.0048329830169678 switch with 2 args took 0.0084939002990723 cufa with 3 args took 0.0051789283752441 switch with 3 args took 0.0095858573913574 cufa with 4 args took 0.0054571628570557 switch with 4 args took 0.012388944625854 cufa with 5 args took 0.0056710243225098 switch with 5 args took 0.013386011123657
Output for 7.0.5
cufa with 0 args took 0.0033681392669678 switch with 0 args took 0.0045769214630127 cufa with 1 args took 0.0038199424743652 switch with 1 args took 0.0058679580688477 cufa with 2 args took 0.0039899349212646 switch with 2 args took 0.0069420337677002 cufa with 3 args took 0.0042221546173096 switch with 3 args took 0.0079848766326904 cufa with 4 args took 0.0044291019439697 switch with 4 args took 0.010205984115601 cufa with 5 args took 0.0045549869537354 switch with 5 args took 0.010951042175293
Output for 7.0.4
cufa with 0 args took 0.0056681632995605 switch with 0 args took 0.0073091983795166 cufa with 1 args took 0.0085477828979492 switch with 1 args took 0.0092389583587646 cufa with 2 args took 0.0051431655883789 switch with 2 args took 0.0086579322814941 cufa with 3 args took 0.0053830146789551 switch with 3 args took 0.009835958480835 cufa with 4 args took 0.0054850578308105 switch with 4 args took 0.012222051620483 cufa with 5 args took 0.0058550834655762 switch with 5 args took 0.013461112976074
Output for 7.0.3
cufa with 0 args took 0.0062611103057861 switch with 0 args took 0.0082409381866455 cufa with 1 args took 0.0065751075744629 switch with 1 args took 0.0097091197967529 cufa with 2 args took 0.0066561698913574 switch with 2 args took 0.01150107383728 cufa with 3 args took 0.0068700313568115 switch with 3 args took 0.012496948242188 cufa with 4 args took 0.007047176361084 switch with 4 args took 0.015061140060425 cufa with 5 args took 0.0067379474639893 switch with 5 args took 0.014815092086792
Output for 7.0.2
cufa with 0 args took 0.0064160823822021 switch with 0 args took 0.0082409381866455 cufa with 1 args took 0.0054640769958496 switch with 1 args took 0.00826096534729 cufa with 2 args took 0.0061349868774414 switch with 2 args took 0.0097839832305908 cufa with 3 args took 0.0068461894989014 switch with 3 args took 0.0099549293518066 cufa with 4 args took 0.0058479309082031 switch with 4 args took 0.013078927993774 cufa with 5 args took 0.0063629150390625 switch with 5 args took 0.013328075408936
Output for 7.0.1
cufa with 0 args took 0.0053489208221436 switch with 0 args took 0.0072710514068604 cufa with 1 args took 0.0060999393463135 switch with 1 args took 0.0072379112243652 cufa with 2 args took 0.0048270225524902 switch with 2 args took 0.0085370540618896 cufa with 3 args took 0.0054140090942383 switch with 3 args took 0.010087966918945 cufa with 4 args took 0.0055990219116211 switch with 4 args took 0.01258397102356 cufa with 5 args took 0.0060040950775146 switch with 5 args took 0.01357889175415
Output for 7.0.0
cufa with 0 args took 0.0069198608398438 switch with 0 args took 0.0083332061767578 cufa with 1 args took 0.0075700283050537 switch with 1 args took 0.010737180709839 cufa with 2 args took 0.0073950290679932 switch with 2 args took 0.011868000030518 cufa with 3 args took 0.0072710514068604 switch with 3 args took 0.012803077697754 cufa with 4 args took 0.0070850849151611 switch with 4 args took 0.015462160110474 cufa with 5 args took 0.0070388317108154 switch with 5 args took 0.015861034393311
Output for 5.6.28
cufa with 0 args took 0.050331115722656 switch with 0 args took 0.02302098274231 cufa with 1 args took 0.046995878219604 switch with 1 args took 0.022488117218018 cufa with 2 args took 0.043668985366821 switch with 2 args took 0.023960828781128 cufa with 3 args took -0.0048410892486572 switch with 3 args took -0.023768186569214 cufa with 4 args took -0.041311979293823 switch with 4 args took -0.026056051254272 cufa with 5 args took -0.044054985046387 switch with 5 args took -0.028536081314087
Output for 5.6.25
cufa with 0 args took 0.037284135818481 switch with 0 args took 0.022952795028687 cufa with 1 args took 0.048131942749023 switch with 1 args took 0.024744987487793 cufa with 2 args took 0.05049204826355 switch with 2 args took 0.028059005737305 cufa with 3 args took 0.053303003311157 switch with 3 args took 0.032755851745605 cufa with 4 args took 0.05599308013916 switch with 4 args took 0.034288883209229 cufa with 5 args took 0.059322118759155 switch with 5 args took 0.037897825241089
Output for 5.6.24
cufa with 0 args took 0.041718006134033 switch with 0 args took 0.027000188827515 cufa with 1 args took 0.05012583732605 switch with 1 args took 0.025695085525513 cufa with 2 args took 0.050359010696411 switch with 2 args took 0.028536081314087 cufa with 3 args took 0.054169893264771 switch with 3 args took 0.037549018859863 cufa with 4 args took 0.060985088348389 switch with 4 args took 0.03501296043396 cufa with 5 args took 0.060676097869873 switch with 5 args took 0.040342092514038
Output for 5.6.23
cufa with 0 args took 0.032625913619995 switch with 0 args took 0.021888017654419 cufa with 1 args took 0.046450853347778 switch with 1 args took 0.024872064590454 cufa with 2 args took 0.05116605758667 switch with 2 args took 0.028356075286865 cufa with 3 args took 0.049530029296875 switch with 3 args took 0.028264999389648 cufa with 4 args took 0.046625137329102 switch with 4 args took 0.028347015380859 cufa with 5 args took 0.049157857894897 switch with 5 args took 0.030772924423218
Output for 5.6.22
cufa with 0 args took 0.030808925628662 switch with 0 args took 0.021667003631592 cufa with 1 args took 0.046886205673218 switch with 1 args took 0.025049924850464 cufa with 2 args took 0.049810171127319 switch with 2 args took 0.028438091278076 cufa with 3 args took 0.053274154663086 switch with 3 args took 0.033271074295044 cufa with 4 args took 0.056207180023193 switch with 4 args took 0.03445291519165 cufa with 5 args took 0.055365085601807 switch with 5 args took 0.032202005386353
Output for 5.6.21
cufa with 0 args took 0.039650917053223 switch with 0 args took 0.025819063186646 cufa with 1 args took 0.049701929092407 switch with 1 args took 0.025114059448242 cufa with 2 args took 0.048619985580444 switch with 2 args took 0.028061151504517 cufa with 3 args took 0.051839113235474 switch with 3 args took 0.032320976257324 cufa with 4 args took 0.054908037185669 switch with 4 args took 0.034592151641846 cufa with 5 args took 0.058627128601074 switch with 5 args took 0.038211107254028
Output for 5.6.20
cufa with 0 args took 0.031244993209839 switch with 0 args took 0.022264003753662 cufa with 1 args took 0.047357082366943 switch with 1 args took 0.025768041610718 cufa with 2 args took 0.049890041351318 switch with 2 args took 0.028038024902344 cufa with 3 args took 0.052644014358521 switch with 3 args took 0.03210711479187 cufa with 4 args took 0.050893068313599 switch with 4 args took 0.029231071472168 cufa with 5 args took 0.048471927642822 switch with 5 args took 0.03058385848999
Output for 5.6.19
cufa with 0 args took 0.02792501449585 switch with 0 args took 0.019207954406738 cufa with 1 args took 0.038246870040894 switch with 1 args took 0.025079011917114 cufa with 2 args took 0.04790997505188 switch with 2 args took 0.028100967407227 cufa with 3 args took 0.048732995986938 switch with 3 args took 0.030250072479248 cufa with 4 args took 0.051578044891357 switch with 4 args took 0.031532049179077 cufa with 5 args took 0.051871061325073 switch with 5 args took 0.036604166030884
Output for 5.6.18
cufa with 0 args took 0.043722867965698 switch with 0 args took 0.022459983825684 cufa with 1 args took 0.045334815979004 switch with 1 args took 0.025272130966187 cufa with 2 args took 0.048826932907104 switch with 2 args took 0.028076887130737 cufa with 3 args took 0.052406787872314 switch with 3 args took 0.032840967178345 cufa with 4 args took 0.056021928787231 switch with 4 args took 0.034615039825439 cufa with 5 args took 0.057984113693237 switch with 5 args took 0.037161827087402
Output for 5.6.17
cufa with 0 args took 0.046082973480225 switch with 0 args took 0.029103994369507 cufa with 1 args took 0.054991960525513 switch with 1 args took 0.026518821716309 cufa with 2 args took 0.049039125442505 switch with 2 args took 0.027712106704712 cufa with 3 args took 0.052170038223267 switch with 3 args took 0.031741142272949 cufa with 4 args took 0.055247068405151 switch with 4 args took 0.033674001693726 cufa with 5 args took 0.058288812637329 switch with 5 args took 0.036186933517456
Output for 5.6.16
cufa with 0 args took 0.039996862411499 switch with 0 args took 0.022686004638672 cufa with 1 args took 0.046087980270386 switch with 1 args took 0.025052785873413 cufa with 2 args took 0.04901909828186 switch with 2 args took 0.027868986129761 cufa with 3 args took 0.052629947662354 switch with 3 args took 0.032304048538208 cufa with 4 args took 0.055346965789795 switch with 4 args took 0.03396201133728 cufa with 5 args took 0.058612823486328 switch with 5 args took 0.037178993225098
Output for 5.6.15
cufa with 0 args took 0.04392409324646 switch with 0 args took 0.026416063308716 cufa with 1 args took 0.049405097961426 switch with 1 args took 0.025087118148804 cufa with 2 args took 0.049666166305542 switch with 2 args took 0.028463840484619 cufa with 3 args took 0.052626132965088 switch with 3 args took 0.032342910766602 cufa with 4 args took 0.054821968078613 switch with 4 args took 0.034436941146851 cufa with 5 args took 0.058473825454712 switch with 5 args took 0.036746978759766
Output for 5.6.14
cufa with 0 args took 0.045822858810425 switch with 0 args took 0.027570962905884 cufa with 1 args took 0.047390937805176 switch with 1 args took 0.025604009628296 cufa with 2 args took 0.049160957336426 switch with 2 args took 0.028898000717163 cufa with 3 args took 0.052167892456055 switch with 3 args took 0.033285140991211 cufa with 4 args took 0.055592060089111 switch with 4 args took 0.034220933914185 cufa with 5 args took 0.059858798980713 switch with 5 args took 0.038165807723999
Output for 5.6.13
cufa with 0 args took 0.046486854553223 switch with 0 args took 0.029251098632812 cufa with 1 args took 0.05460786819458 switch with 1 args took 0.026634931564331 cufa with 2 args took 0.049062013626099 switch with 2 args took 0.027482986450195 cufa with 3 args took 0.051661014556885 switch with 3 args took 0.032152891159058 cufa with 4 args took 0.055804967880249 switch with 4 args took 0.03475284576416 cufa with 5 args took 0.057921171188354 switch with 5 args took 0.036823987960815
Output for 5.6.12
cufa with 0 args took 0.046313047409058 switch with 0 args took 0.024960041046143 cufa with 1 args took 0.049708843231201 switch with 1 args took 0.024869918823242 cufa with 2 args took 0.0487220287323 switch with 2 args took 0.027501821517944 cufa with 3 args took 0.051784992218018 switch with 3 args took 0.032241106033325 cufa with 4 args took 0.055690050125122 switch with 4 args took 0.034087896347046 cufa with 5 args took 0.058017015457153 switch with 5 args took 0.036614894866943
Output for 5.6.11
cufa with 0 args took 0.043589115142822 switch with 0 args took 0.027995109558105 cufa with 1 args took 0.05309796333313 switch with 1 args took 0.026594877243042 cufa with 2 args took 0.049737930297852 switch with 2 args took 0.027515888214111 cufa with 3 args took 0.051599025726318 switch with 3 args took 0.032508850097656 cufa with 4 args took 0.055702924728394 switch with 4 args took 0.034028053283691 cufa with 5 args took 0.058080911636353 switch with 5 args took 0.036817073822021
Output for 5.6.10
cufa with 0 args took 0.035989046096802 switch with 0 args took 0.021867990493774 cufa with 1 args took 0.046106100082397 switch with 1 args took 0.025407075881958 cufa with 2 args took 0.049484968185425 switch with 2 args took 0.028473138809204 cufa with 3 args took 0.052011013031006 switch with 3 args took 0.033250093460083 cufa with 4 args took 0.055000066757202 switch with 4 args took 0.03542685508728 cufa with 5 args took 0.057878017425537 switch with 5 args took 0.038491010665894
Output for 5.6.9
cufa with 0 args took 0.037644147872925 switch with 0 args took 0.025779962539673 cufa with 1 args took 0.055543184280396 switch with 1 args took 0.028507947921753 cufa with 2 args took 0.058065891265869 switch with 2 args took 0.033556938171387 cufa with 3 args took 0.056005001068115 switch with 3 args took 0.031481981277466 cufa with 4 args took 0.053230047225952 switch with 4 args took 0.033155918121338 cufa with 5 args took 0.054468870162964 switch with 5 args took 0.035744905471802
Output for 5.6.8
cufa with 0 args took 0.035371065139771 switch with 0 args took 0.021701812744141 cufa with 1 args took 0.046761035919189 switch with 1 args took 0.025213003158569 cufa with 2 args took 0.049470901489258 switch with 2 args took 0.028182983398438 cufa with 3 args took 0.052808046340942 switch with 3 args took 0.032553911209106 cufa with 4 args took 0.056040048599243 switch with 4 args took 0.034677028656006 cufa with 5 args took 0.058373212814331 switch with 5 args took 0.037607908248901
Output for 5.6.7
cufa with 0 args took 0.047981977462769 switch with 0 args took 0.030527114868164 cufa with 1 args took 0.056749820709229 switch with 1 args took 0.027407884597778 cufa with 2 args took 0.049829959869385 switch with 2 args took 0.027876138687134 cufa with 3 args took 0.051767826080322 switch with 3 args took 0.032609939575195 cufa with 4 args took 0.05506706237793 switch with 4 args took 0.034186124801636 cufa with 5 args took 0.058537006378174 switch with 5 args took 0.036920070648193
Output for 5.6.6
cufa with 0 args took 0.032324075698853 switch with 0 args took 0.021116971969604 cufa with 1 args took 0.042683839797974 switch with 1 args took 0.022291898727417 cufa with 2 args took 0.045837879180908 switch with 2 args took 0.024516820907593 cufa with 3 args took 0.047713041305542 switch with 3 args took 0.028084993362427 cufa with 4 args took 0.050647020339966 switch with 4 args took 0.031003952026367 cufa with 5 args took 0.053837060928345 switch with 5 args took 0.034198045730591
Output for 5.6.5
cufa with 0 args took 0.050270080566406 switch with 0 args took 0.030153036117554 cufa with 1 args took 0.052769184112549 switch with 1 args took 0.027947902679443 cufa with 2 args took 0.055392980575562 switch with 2 args took 0.030292987823486 cufa with 3 args took 0.060682058334351 switch with 3 args took 0.040275096893311 cufa with 4 args took 0.066778898239136 switch with 4 args took 0.039186000823975 cufa with 5 args took 0.07078218460083 switch with 5 args took 0.048815965652466
Output for 5.6.4
cufa with 0 args took 0.042579889297485 switch with 0 args took 0.028632879257202 cufa with 1 args took 0.052948951721191 switch with 1 args took 0.030173063278198 cufa with 2 args took 0.053980112075806 switch with 2 args took 0.028247833251953 cufa with 3 args took 0.053327798843384 switch with 3 args took 0.032831907272339 cufa with 4 args took 0.0555739402771 switch with 4 args took 0.03486704826355 cufa with 5 args took 0.058818817138672 switch with 5 args took 0.037724018096924
Output for 5.6.3
cufa with 0 args took 0.033238172531128 switch with 0 args took 0.022285938262939 cufa with 1 args took 0.04646110534668 switch with 1 args took 0.02517294883728 cufa with 2 args took 0.049169063568115 switch with 2 args took 0.027814865112305 cufa with 3 args took 0.052888154983521 switch with 3 args took 0.032222032546997 cufa with 4 args took 0.055179834365845 switch with 4 args took 0.03425407409668 cufa with 5 args took 0.058639049530029 switch with 5 args took 0.037008047103882
Output for 5.6.2
cufa with 0 args took 0.046661853790283 switch with 0 args took 0.029345989227295 cufa with 1 args took 0.054712057113647 switch with 1 args took 0.02665901184082 cufa with 2 args took 0.04946494102478 switch with 2 args took 0.028242826461792 cufa with 3 args took 0.052303075790405 switch with 3 args took 0.032212018966675 cufa with 4 args took 0.055682897567749 switch with 4 args took 0.033742189407349 cufa with 5 args took 0.058372974395752 switch with 5 args took 0.037258148193359
Output for 5.6.1
cufa with 0 args took 0.040856838226318 switch with 0 args took 0.02535605430603 cufa with 1 args took 0.050386905670166 switch with 1 args took 0.025312185287476 cufa with 2 args took 0.049417972564697 switch with 2 args took 0.027648210525513 cufa with 3 args took 0.052678108215332 switch with 3 args took 0.03187084197998 cufa with 4 args took 0.055991172790527 switch with 4 args took 0.034327030181885 cufa with 5 args took 0.059338808059692 switch with 5 args took 0.036790132522583
Output for 5.6.0
cufa with 0 args took 0.047177076339722 switch with 0 args took 0.026347160339355 cufa with 1 args took 0.048962831497192 switch with 1 args took 0.025625944137573 cufa with 2 args took 0.048848152160645 switch with 2 args took 0.028282880783081 cufa with 3 args took 0.05265998840332 switch with 3 args took 0.032997846603394 cufa with 4 args took 0.05590295791626 switch with 4 args took 0.034706830978394 cufa with 5 args took 0.059202909469604 switch with 5 args took 0.037852048873901
Output for 5.5.38
cufa with 0 args took 0.040159940719604 switch with 0 args took 0.028329133987427 cufa with 1 args took 0.055124044418335 switch with 1 args took 0.031447887420654 cufa with 2 args took 0.061657905578613 switch with 2 args took 0.036837100982666 cufa with 3 args took 0.063245058059692 switch with 3 args took 0.040644884109497 cufa with 4 args took 0.064972162246704 switch with 4 args took 0.040343999862671 cufa with 5 args took 0.057996034622192 switch with 5 args took 0.039095878601074
Output for 5.5.37
cufa with 0 args took 0.029786825180054 switch with 0 args took 0.023002862930298 cufa with 1 args took 0.047609806060791 switch with 1 args took 0.027077913284302 cufa with 2 args took 0.050562143325806 switch with 2 args took 0.031550884246826 cufa with 3 args took 0.054310083389282 switch with 3 args took 0.036366939544678 cufa with 4 args took 0.054979801177979 switch with 4 args took 0.03524112701416 cufa with 5 args took 0.05054497718811 switch with 5 args took 0.036106109619141
Output for 5.5.36
cufa with 0 args took 0.037389039993286 switch with 0 args took 0.02489185333252 cufa with 1 args took 0.04833197593689 switch with 1 args took 0.025630950927734 cufa with 2 args took 0.050023078918457 switch with 2 args took 0.029055833816528 cufa with 3 args took 0.053628206253052 switch with 3 args took 0.034480810165405 cufa with 4 args took 0.056632995605469 switch with 4 args took 0.037224054336548 cufa with 5 args took 0.059741973876953 switch with 5 args took 0.040817022323608
Output for 5.5.35
cufa with 0 args took 0.029935836791992 switch with 0 args took 0.022140026092529 cufa with 1 args took 0.046516895294189 switch with 1 args took 0.025791883468628 cufa with 2 args took 0.049179077148438 switch with 2 args took 0.030208110809326 cufa with 3 args took 0.052716970443726 switch with 3 args took 0.03354287147522 cufa with 4 args took 0.052536010742188 switch with 4 args took 0.031072854995728 cufa with 5 args took 0.049202919006348 switch with 5 args took 0.03393292427063
Output for 5.5.34
cufa with 0 args took 0.026563882827759 switch with 0 args took 0.019057035446167 cufa with 1 args took 0.038650989532471 switch with 1 args took 0.021736145019531 cufa with 2 args took 0.041282892227173 switch with 2 args took 0.024759769439697 cufa with 3 args took 0.044075965881348 switch with 3 args took 0.028761863708496 cufa with 4 args took 0.047116041183472 switch with 4 args took 0.030726909637451 cufa with 5 args took 0.049692153930664 switch with 5 args took 0.034109115600586
Output for 5.5.33
cufa with 0 args took 0.039274930953979 switch with 0 args took 0.026859045028687 cufa with 1 args took 0.049336910247803 switch with 1 args took 0.025678873062134 cufa with 2 args took 0.04525089263916 switch with 2 args took 0.02499794960022 cufa with 3 args took 0.044085025787354 switch with 3 args took 0.02849292755127 cufa with 4 args took 0.045454978942871 switch with 4 args took 0.030812978744507 cufa with 5 args took 0.049046993255615 switch with 5 args took 0.034271955490112
Output for 5.5.32
cufa with 0 args took 0.038495063781738 switch with 0 args took 0.02496600151062 cufa with 1 args took 0.048264980316162 switch with 1 args took 0.026063919067383 cufa with 2 args took 0.050737857818604 switch with 2 args took 0.02963399887085 cufa with 3 args took 0.053640842437744 switch with 3 args took 0.034593105316162 cufa with 4 args took 0.057290077209473 switch with 4 args took 0.03709602355957 cufa with 5 args took 0.060060024261475 switch with 5 args took 0.040155172348022
Output for 5.5.31
cufa with 0 args took 0.036293983459473 switch with 0 args took 0.0243239402771 cufa with 1 args took 0.047210931777954 switch with 1 args took 0.027633905410767 cufa with 2 args took 0.04944109916687 switch with 2 args took 0.029767990112305 cufa with 3 args took 0.05192494392395 switch with 3 args took 0.03351616859436 cufa with 4 args took 0.056313037872314 switch with 4 args took 0.035983085632324 cufa with 5 args took 0.058886766433716 switch with 5 args took 0.041455984115601
Output for 5.5.30
cufa with 0 args took 0.036868810653687 switch with 0 args took 0.027217864990234 cufa with 1 args took 0.055229902267456 switch with 1 args took 0.032784938812256 cufa with 2 args took 0.060625076293945 switch with 2 args took 0.034538984298706 cufa with 3 args took 0.062789916992188 switch with 3 args took 0.040644884109497 cufa with 4 args took 0.063543081283569 switch with 4 args took 0.039323091506958 cufa with 5 args took 0.054666042327881 switch with 5 args took 0.039313077926636
Output for 5.5.29
cufa with 0 args took 0.029608011245728 switch with 0 args took 0.022938966751099 cufa with 1 args took 0.045952081680298 switch with 1 args took 0.026042938232422 cufa with 2 args took 0.049492120742798 switch with 2 args took 0.02959418296814 cufa with 3 args took 0.049926996231079 switch with 3 args took 0.029372930526733 cufa with 4 args took 0.046179056167603 switch with 4 args took 0.031047821044922 cufa with 5 args took 0.048176050186157 switch with 5 args took 0.03327202796936
Output for 5.5.28
cufa with 0 args took 0.038271903991699 switch with 0 args took 0.026003122329712 cufa with 1 args took 0.048762798309326 switch with 1 args took 0.025925159454346 cufa with 2 args took 0.04961895942688 switch with 2 args took 0.029715061187744 cufa with 3 args took 0.052722930908203 switch with 3 args took 0.034241914749146 cufa with 4 args took 0.056230068206787 switch with 4 args took 0.03659200668335 cufa with 5 args took 0.058195114135742 switch with 5 args took 0.040283918380737
Output for 5.5.27
cufa with 0 args took 0.033860921859741 switch with 0 args took 0.022207975387573 cufa with 1 args took 0.043332099914551 switch with 1 args took 0.023916006088257 cufa with 2 args took 0.045049905776978 switch with 2 args took 0.028284072875977 cufa with 3 args took 0.049468040466309 switch with 3 args took 0.033156871795654 cufa with 4 args took 0.05293607711792 switch with 4 args took 0.036334037780762 cufa with 5 args took 0.055156946182251 switch with 5 args took 0.040292978286743
Output for 5.5.26
cufa with 0 args took 0.047488927841187 switch with 0 args took 0.030244112014771 cufa with 1 args took 0.056653022766113 switch with 1 args took 0.027950048446655 cufa with 2 args took 0.049666166305542 switch with 2 args took 0.028929948806763 cufa with 3 args took 0.052947998046875 switch with 3 args took 0.034276008605957 cufa with 4 args took 0.055803060531616 switch with 4 args took 0.036760091781616 cufa with 5 args took 0.058308124542236 switch with 5 args took 0.040349960327148
Output for 5.5.25
cufa with 0 args took 0.038379907608032 switch with 0 args took 0.024752855300903 cufa with 1 args took 0.046881198883057 switch with 1 args took 0.026186943054199 cufa with 2 args took 0.049437999725342 switch with 2 args took 0.029791831970215 cufa with 3 args took 0.052870988845825 switch with 3 args took 0.034580945968628 cufa with 4 args took 0.055361032485962 switch with 4 args took 0.037928104400635 cufa with 5 args took 0.059014081954956 switch with 5 args took 0.040877819061279
Output for 5.5.24
cufa with 0 args took 0.030766010284424 switch with 0 args took 0.021944046020508 cufa with 1 args took 0.045109987258911 switch with 1 args took 0.025854825973511 cufa with 2 args took 0.047128915786743 switch with 2 args took 0.027514934539795 cufa with 3 args took 0.051027059555054 switch with 3 args took 0.032985925674438 cufa with 4 args took 0.052752017974854 switch with 4 args took 0.035061836242676 cufa with 5 args took 0.057445049285889 switch with 5 args took 0.037677049636841
Output for 5.5.23
cufa with 0 args took 0.038640022277832 switch with 0 args took 0.026546955108643 cufa with 1 args took 0.048305988311768 switch with 1 args took 0.026500940322876 cufa with 2 args took 0.049130916595459 switch with 2 args took 0.029765129089355 cufa with 3 args took 0.052717208862305 switch with 3 args took 0.035429000854492 cufa with 4 args took 0.055682182312012 switch with 4 args took 0.037297964096069 cufa with 5 args took 0.058463096618652 switch with 5 args took 0.040601015090942
Output for 5.5.22
cufa with 0 args took 0.035092115402222 switch with 0 args took 0.022177934646606 cufa with 1 args took 0.046494960784912 switch with 1 args took 0.026355981826782 cufa with 2 args took 0.049650192260742 switch with 2 args took 0.0295569896698 cufa with 3 args took 0.052644968032837 switch with 3 args took 0.034568071365356 cufa with 4 args took 0.056199789047241 switch with 4 args took 0.037163972854614 cufa with 5 args took 0.059627056121826 switch with 5 args took 0.041985034942627
Output for 5.5.21
cufa with 0 args took 0.049036026000977 switch with 0 args took 0.030922889709473 cufa with 1 args took 0.056746959686279 switch with 1 args took 0.028731822967529 cufa with 2 args took 0.049836874008179 switch with 2 args took 0.029129028320312 cufa with 3 args took 0.051748991012573 switch with 3 args took 0.034049987792969 cufa with 4 args took 0.055020093917847 switch with 4 args took 0.036623954772949 cufa with 5 args took 0.057746887207031 switch with 5 args took 0.039988994598389
Output for 5.5.20
cufa with 0 args took 0.044672012329102 switch with 0 args took 0.025385141372681 cufa with 1 args took 0.047028064727783 switch with 1 args took 0.02606201171875 cufa with 2 args took 0.049310922622681 switch with 2 args took 0.029852151870728 cufa with 3 args took 0.052980899810791 switch with 3 args took 0.03493595123291 cufa with 4 args took 0.055800914764404 switch with 4 args took 0.037185907363892 cufa with 5 args took 0.059298038482666 switch with 5 args took 0.040677070617676
Output for 5.5.19
cufa with 0 args took 0.048230886459351 switch with 0 args took 0.030647039413452 cufa with 1 args took 0.054976940155029 switch with 1 args took 0.028013944625854 cufa with 2 args took 0.049860000610352 switch with 2 args took 0.029359102249146 cufa with 3 args took 0.052418947219849 switch with 3 args took 0.034398078918457 cufa with 4 args took 0.055944919586182 switch with 4 args took 0.036711931228638 cufa with 5 args took 0.058079957962036 switch with 5 args took 0.040025949478149
Output for 5.5.18
cufa with 0 args took 0.038185119628906 switch with 0 args took 0.024518013000488 cufa with 1 args took 0.047658920288086 switch with 1 args took 0.026049852371216 cufa with 2 args took 0.049751043319702 switch with 2 args took 0.029031038284302 cufa with 3 args took 0.053095102310181 switch with 3 args took 0.034097194671631 cufa with 4 args took 0.055891036987305 switch with 4 args took 0.036777973175049 cufa with 5 args took 0.058763980865479 switch with 5 args took 0.040050983428955
Output for 5.5.16
cufa with 0 args took 0.044707059860229 switch with 0 args took 0.028279066085815 cufa with 1 args took 0.052513837814331 switch with 1 args took 0.026026964187622 cufa with 2 args took 0.049254894256592 switch with 2 args took 0.029372930526733 cufa with 3 args took 0.052330017089844 switch with 3 args took 0.03406286239624 cufa with 4 args took 0.056230068206787 switch with 4 args took 0.036810874938965 cufa with 5 args took 0.058951854705811 switch with 5 args took 0.040925025939941
Output for 5.5.15
cufa with 0 args took 0.04597806930542 switch with 0 args took 0.030349969863892 cufa with 1 args took 0.055641174316406 switch with 1 args took 0.027832984924316 cufa with 2 args took 0.049149036407471 switch with 2 args took 0.029161930084229 cufa with 3 args took 0.0518479347229 switch with 3 args took 0.034629106521606 cufa with 4 args took 0.055111885070801 switch with 4 args took 0.037003993988037 cufa with 5 args took 0.057923793792725 switch with 5 args took 0.0399169921875
Output for 5.5.14
cufa with 0 args took 0.043344974517822 switch with 0 args took 0.02896785736084 cufa with 1 args took 0.049961090087891 switch with 1 args took 0.026188850402832 cufa with 2 args took 0.050331830978394 switch with 2 args took 0.029490947723389 cufa with 3 args took 0.052624940872192 switch with 3 args took 0.034240961074829 cufa with 4 args took 0.055284976959229 switch with 4 args took 0.036952972412109 cufa with 5 args took 0.058434009552002 switch with 5 args took 0.040729999542236
Output for 5.5.13
cufa with 0 args took 0.045390129089355 switch with 0 args took 0.025660991668701 cufa with 1 args took 0.047790050506592 switch with 1 args took 0.026158094406128 cufa with 2 args took 0.050551891326904 switch with 2 args took 0.029486894607544 cufa with 3 args took 0.052300930023193 switch with 3 args took 0.034859180450439 cufa with 4 args took 0.054866790771484 switch with 4 args took 0.037184000015259 cufa with 5 args took 0.058871984481812 switch with 5 args took 0.040339946746826
Output for 5.5.12
cufa with 0 args took 0.030740022659302 switch with 0 args took 0.021931886672974 cufa with 1 args took 0.046030044555664 switch with 1 args took 0.026020050048828 cufa with 2 args took 0.049439907073975 switch with 2 args took 0.029021978378296 cufa with 3 args took 0.052716970443726 switch with 3 args took 0.034888029098511 cufa with 4 args took 0.056042194366455 switch with 4 args took 0.037369966506958 cufa with 5 args took 0.058547019958496 switch with 5 args took 0.040709972381592
Output for 5.5.11
cufa with 0 args took 0.036482095718384 switch with 0 args took 0.023641109466553 cufa with 1 args took 0.047482013702393 switch with 1 args took 0.026336193084717 cufa with 2 args took 0.050239086151123 switch with 2 args took 0.029593944549561 cufa with 3 args took 0.052788019180298 switch with 3 args took 0.035026788711548 cufa with 4 args took 0.056225061416626 switch with 4 args took 0.036647081375122 cufa with 5 args took 0.05937123298645 switch with 5 args took 0.040372848510742
Output for 5.5.10
cufa with 0 args took 0.039797067642212 switch with 0 args took 0.0260009765625 cufa with 1 args took 0.050149202346802 switch with 1 args took 0.025736093521118 cufa with 2 args took 0.053465127944946 switch with 2 args took 0.02988600730896 cufa with 3 args took 0.056489944458008 switch with 3 args took 0.035008907318115 cufa with 4 args took 0.054880142211914 switch with 4 args took 0.036466121673584 cufa with 5 args took 0.059327125549316 switch with 5 args took 0.039906978607178
Output for 5.5.9
cufa with 0 args took 0.034888029098511 switch with 0 args took 0.02530312538147 cufa with 1 args took 0.050916910171509 switch with 1 args took 0.028435945510864 cufa with 2 args took 0.055752992630005 switch with 2 args took 0.031901121139526 cufa with 3 args took 0.060928106307983 switch with 3 args took 0.038424015045166 cufa with 4 args took 0.062972068786621 switch with 4 args took 0.04018497467041 cufa with 5 args took 0.065990924835205 switch with 5 args took 0.043728828430176
Output for 5.5.8
cufa with 0 args took 0.04491400718689 switch with 0 args took 0.028620958328247 cufa with 1 args took 0.053246021270752 switch with 1 args took 0.026161909103394 cufa with 2 args took 0.049170970916748 switch with 2 args took 0.028985977172852 cufa with 3 args took 0.052610158920288 switch with 3 args took 0.034397125244141 cufa with 4 args took 0.055659055709839 switch with 4 args took 0.036641120910645 cufa with 5 args took 0.058871030807495 switch with 5 args took 0.040642023086548
Output for 5.5.7
cufa with 0 args took 0.038114070892334 switch with 0 args took 0.022916078567505 cufa with 1 args took 0.046203136444092 switch with 1 args took 0.02588415145874 cufa with 2 args took 0.050411939620972 switch with 2 args took 0.028887033462524 cufa with 3 args took 0.052103996276855 switch with 3 args took 0.034169912338257 cufa with 4 args took 0.056442022323608 switch with 4 args took 0.036587953567505 cufa with 5 args took 0.058666944503784 switch with 5 args took 0.040682792663574
Output for 5.5.6
cufa with 0 args took 0.040318012237549 switch with 0 args took 0.023510217666626 cufa with 1 args took 0.047839164733887 switch with 1 args took 0.025729894638062 cufa with 2 args took 0.049525022506714 switch with 2 args took 0.029040098190308 cufa with 3 args took 0.052848100662231 switch with 3 args took 0.034466981887817 cufa with 4 args took 0.055448055267334 switch with 4 args took 0.036258935928345 cufa with 5 args took 0.059584140777588 switch with 5 args took 0.039733171463013
Output for 5.5.5
cufa with 0 args took 0.037654161453247 switch with 0 args took 0.02649998664856 cufa with 1 args took 0.05475902557373 switch with 1 args took 0.034188985824585 cufa with 2 args took 0.059372186660767 switch with 2 args took 0.036791086196899 cufa with 3 args took 0.064316987991333 switch with 3 args took 0.040998935699463 cufa with 4 args took 0.068905115127563 switch with 4 args took 0.044903993606567 cufa with 5 args took 0.073868036270142 switch with 5 args took 0.048635005950928
Output for 5.5.4
cufa with 0 args took 0.042550086975098 switch with 0 args took 0.028049945831299 cufa with 1 args took 0.052091121673584 switch with 1 args took 0.026422023773193 cufa with 2 args took 0.049586057662964 switch with 2 args took 0.029717922210693 cufa with 3 args took 0.052688837051392 switch with 3 args took 0.035504102706909 cufa with 4 args took 0.056608915328979 switch with 4 args took 0.037172079086304 cufa with 5 args took 0.06000804901123 switch with 5 args took 0.041039943695068
Output for 5.5.3
cufa with 0 args took 0.034383058547974 switch with 0 args took 0.022347927093506 cufa with 1 args took 0.046043157577515 switch with 1 args took 0.02626895904541 cufa with 2 args took 0.049216032028198 switch with 2 args took 0.029461860656738 cufa with 3 args took 0.053201913833618 switch with 3 args took 0.035486936569214 cufa with 4 args took 0.056102991104126 switch with 4 args took 0.037594079971313 cufa with 5 args took 0.059219121932983 switch with 5 args took 0.040791988372803
Output for 5.5.2
cufa with 0 args took 0.030401229858398 switch with 0 args took 0.02252197265625 cufa with 1 args took 0.046168088912964 switch with 1 args took 0.026155948638916 cufa with 2 args took 0.050126075744629 switch with 2 args took 0.027350902557373 cufa with 3 args took 0.044878959655762 switch with 3 args took 0.028887987136841 cufa with 4 args took 0.046077966690063 switch with 4 args took 0.030735015869141 cufa with 5 args took 0.049025058746338 switch with 5 args took 0.03348183631897
Output for 5.5.1
cufa with 0 args took 0.024813890457153 switch with 0 args took 0.018604040145874 cufa with 1 args took 0.038831949234009 switch with 1 args took 0.021511077880859 cufa with 2 args took 0.040549993515015 switch with 2 args took 0.023884057998657 cufa with 3 args took 0.044150114059448 switch with 3 args took 0.028637170791626 cufa with 4 args took 0.045911073684692 switch with 4 args took 0.03125 cufa with 5 args took 0.04933500289917 switch with 5 args took 0.03345513343811
Output for 5.5.0
cufa with 0 args took 0.030580997467041 switch with 0 args took 0.022001981735229 cufa with 1 args took 0.045782089233398 switch with 1 args took 0.023030996322632 cufa with 2 args took 0.041721105575562 switch with 2 args took 0.024494886398315 cufa with 3 args took 0.043888092041016 switch with 3 args took 0.028810024261475 cufa with 4 args took 0.046406984329224 switch with 4 args took 0.03177809715271 cufa with 5 args took 0.049104928970337 switch with 5 args took 0.034097909927368
Output for 5.4.45
cufa with 0 args took 0.043099164962769 switch with 0 args took 0.02808403968811 cufa with 1 args took 0.052090883255005 switch with 1 args took 0.027108907699585 cufa with 2 args took 0.049453020095825 switch with 2 args took 0.029274940490723 cufa with 3 args took 0.051967859268188 switch with 3 args took 0.03764796257019 cufa with 4 args took 0.057324171066284 switch with 4 args took 0.037626981735229 cufa with 5 args took 0.058794975280762 switch with 5 args took 0.040122032165527
Output for 5.4.44
cufa with 0 args took 0.040712833404541 switch with 0 args took 0.027687072753906 cufa with 1 args took 0.052099943161011 switch with 1 args took 0.026657104492188 cufa with 2 args took 0.048845052719116 switch with 2 args took 0.029553890228271 cufa with 3 args took 0.051711797714233 switch with 3 args took 0.034404993057251 cufa with 4 args took 0.054698944091797 switch with 4 args took 0.037988901138306 cufa with 5 args took 0.057698011398315 switch with 5 args took 0.041206121444702
Output for 5.4.43
cufa with 0 args took 0.046218872070312 switch with 0 args took 0.031310081481934 cufa with 1 args took 0.05354118347168 switch with 1 args took 0.026798009872437 cufa with 2 args took 0.049579858779907 switch with 2 args took 0.030183076858521 cufa with 3 args took 0.053733825683594 switch with 3 args took 0.034550905227661 cufa with 4 args took 0.056717872619629 switch with 4 args took 0.037458181381226 cufa with 5 args took 0.05917501449585 switch with 5 args took 0.040823936462402
Output for 5.4.42
cufa with 0 args took 0.04636287689209 switch with 0 args took 0.025303840637207 cufa with 1 args took 0.047307014465332 switch with 1 args took 0.02620005607605 cufa with 2 args took 0.049178838729858 switch with 2 args took 0.029657125473022 cufa with 3 args took 0.052520036697388 switch with 3 args took 0.035177946090698 cufa with 4 args took 0.05647611618042 switch with 4 args took 0.037639141082764 cufa with 5 args took 0.05935001373291 switch with 5 args took 0.040282011032104
Output for 5.4.41
cufa with 0 args took 0.045008897781372 switch with 0 args took 0.029205083847046 cufa with 1 args took 0.054676055908203 switch with 1 args took 0.026993036270142 cufa with 2 args took 0.050245046615601 switch with 2 args took 0.029814958572388 cufa with 3 args took 0.053332805633545 switch with 3 args took 0.035395860671997 cufa with 4 args took 0.056201934814453 switch with 4 args took 0.038032054901123 cufa with 5 args took 0.065205812454224 switch with 5 args took 0.041678905487061
Output for 5.4.40
cufa with 0 args took 0.045244932174683 switch with 0 args took 0.03049898147583 cufa with 1 args took 0.054618835449219 switch with 1 args took 0.028314113616943 cufa with 2 args took 0.049432039260864 switch with 2 args took 0.030061960220337 cufa with 3 args took 0.051339149475098 switch with 3 args took 0.034368991851807 cufa with 4 args took 0.054471969604492 switch with 4 args took 0.038510084152222 cufa with 5 args took 0.057612895965576 switch with 5 args took 0.03983211517334
Output for 5.4.39
cufa with 0 args took 0.031112909317017 switch with 0 args took 0.023685932159424 cufa with 1 args took 0.046044826507568 switch with 1 args took 0.025659084320068 cufa with 2 args took 0.048326015472412 switch with 2 args took 0.029672861099243 cufa with 3 args took 0.051949024200439 switch with 3 args took 0.034114837646484 cufa with 4 args took 0.054543018341064 switch with 4 args took 0.036789894104004 cufa with 5 args took 0.058591842651367 switch with 5 args took 0.041712999343872
Output for 5.4.38
cufa with 0 args took 0.040024042129517 switch with 0 args took 0.023494958877563 cufa with 1 args took 0.045459985733032 switch with 1 args took 0.026057958602905 cufa with 2 args took 0.04927396774292 switch with 2 args took 0.0296950340271 cufa with 3 args took 0.052711963653564 switch with 3 args took 0.034356832504272 cufa with 4 args took 0.055065155029297 switch with 4 args took 0.037052154541016 cufa with 5 args took 0.058743000030518 switch with 5 args took 0.040332078933716
Output for 5.4.37
cufa with 0 args took 0.03693699836731 switch with 0 args took 0.025377035140991 cufa with 1 args took 0.046988964080811 switch with 1 args took 0.027117967605591 cufa with 2 args took 0.048869132995605 switch with 2 args took 0.030416011810303 cufa with 3 args took 0.05170202255249 switch with 3 args took 0.035799980163574 cufa with 4 args took 0.06122899055481 switch with 4 args took 0.042241096496582 cufa with 5 args took 0.058032035827637 switch with 5 args took 0.041890859603882
Output for 5.4.36
cufa with 0 args took 0.045341968536377 switch with 0 args took 0.029826879501343 cufa with 1 args took 0.055202007293701 switch with 1 args took 0.028581857681274 cufa with 2 args took 0.050405979156494 switch with 2 args took 0.029541969299316 cufa with 3 args took 0.053582906723022 switch with 3 args took 0.03451681137085 cufa with 4 args took 0.055140972137451 switch with 4 args took 0.036663055419922 cufa with 5 args took 0.058110952377319 switch with 5 args took 0.039911031723022
Output for 5.4.35
cufa with 0 args took 0.048243999481201 switch with 0 args took 0.025850057601929 cufa with 1 args took 0.048453807830811 switch with 1 args took 0.026320934295654 cufa with 2 args took 0.049341917037964 switch with 2 args took 0.030126094818115 cufa with 3 args took 0.052254915237427 switch with 3 args took 0.035334825515747 cufa with 4 args took 0.05569314956665 switch with 4 args took 0.037167072296143 cufa with 5 args took 0.05790114402771 switch with 5 args took 0.040571928024292
Output for 5.4.34
cufa with 0 args took 0.047430992126465 switch with 0 args took 0.025737047195435 cufa with 1 args took 0.048658847808838 switch with 1 args took 0.026386022567749 cufa with 2 args took 0.049853086471558 switch with 2 args took 0.030208826065063 cufa with 3 args took 0.054285764694214 switch with 3 args took 0.034636974334717 cufa with 4 args took 0.056117057800293 switch with 4 args took 0.037140130996704 cufa with 5 args took 0.059966087341309 switch with 5 args took 0.040977001190186
Output for 5.4.32
cufa with 0 args took 0.039380073547363 switch with 0 args took 0.022119998931885 cufa with 1 args took 0.045354127883911 switch with 1 args took 0.026139974594116 cufa with 2 args took 0.048335075378418 switch with 2 args took 0.029924869537354 cufa with 3 args took 0.052791118621826 switch with 3 args took 0.034825086593628 cufa with 4 args took 0.053920984268188 switch with 4 args took 0.037585020065308 cufa with 5 args took 0.057440996170044 switch with 5 args took 0.041094064712524
Output for 5.4.31
cufa with 0 args took 0.034934043884277 switch with 0 args took 0.022922039031982 cufa with 1 args took 0.045628786087036 switch with 1 args took 0.025933027267456 cufa with 2 args took 0.048444986343384 switch with 2 args took 0.029422044754028 cufa with 3 args took 0.052554845809937 switch with 3 args took 0.034799098968506 cufa with 4 args took 0.057052850723267 switch with 4 args took 0.037061929702759 cufa with 5 args took 0.058643102645874 switch with 5 args took 0.040467023849487
Output for 5.4.30
cufa with 0 args took 0.035033941268921 switch with 0 args took 0.024816989898682 cufa with 1 args took 0.04684591293335 switch with 1 args took 0.026133060455322 cufa with 2 args took 0.048324108123779 switch with 2 args took 0.029803037643433 cufa with 3 args took 0.052020072937012 switch with 3 args took 0.034735918045044 cufa with 4 args took 0.055037975311279 switch with 4 args took 0.036978960037231 cufa with 5 args took 0.058021068572998 switch with 5 args took 0.040256977081299
Output for 5.4.29
cufa with 0 args took 0.042368173599243 switch with 0 args took 0.028156995773315 cufa with 1 args took 0.051755905151367 switch with 1 args took 0.026780128479004 cufa with 2 args took 0.049618005752563 switch with 2 args took 0.030089855194092 cufa with 3 args took 0.052967071533203 switch with 3 args took 0.035066843032837 cufa with 4 args took 0.055943012237549 switch with 4 args took 0.037306785583496 cufa with 5 args took 0.060110092163086 switch with 5 args took 0.04076886177063
Output for 5.4.28
cufa with 0 args took 0.043415069580078 switch with 0 args took 0.029211044311523 cufa with 1 args took 0.05262303352356 switch with 1 args took 0.028324842453003 cufa with 2 args took 0.047890901565552 switch with 2 args took 0.029397964477539 cufa with 3 args took 0.051503896713257 switch with 3 args took 0.034915924072266 cufa with 4 args took 0.054366111755371 switch with 4 args took 0.0366530418396 cufa with 5 args took 0.058211088180542 switch with 5 args took 0.039759874343872
Output for 5.4.27
cufa with 0 args took 0.04214882850647 switch with 0 args took 0.023392915725708 cufa with 1 args took 0.047756195068359 switch with 1 args took 0.026043176651001 cufa with 2 args took 0.04963207244873 switch with 2 args took 0.029074907302856 cufa with 3 args took 0.052828073501587 switch with 3 args took 0.034060955047607 cufa with 4 args took 0.056617975234985 switch with 4 args took 0.036535978317261 cufa with 5 args took 0.058896064758301 switch with 5 args took 0.039690017700195
Output for 5.4.26
cufa with 0 args took 0.037228107452393 switch with 0 args took 0.023036003112793 cufa with 1 args took 0.045724868774414 switch with 1 args took 0.027082920074463 cufa with 2 args took 0.048886060714722 switch with 2 args took 0.030625820159912 cufa with 3 args took 0.05272388458252 switch with 3 args took 0.03510594367981 cufa with 4 args took 0.055527925491333 switch with 4 args took 0.037812948226929 cufa with 5 args took 0.05889105796814 switch with 5 args took 0.041392087936401
Output for 5.4.25
cufa with 0 args took 0.056132078170776 switch with 0 args took 0.029530048370361 cufa with 1 args took 0.055605173110962 switch with 1 args took 0.027412891387939 cufa with 2 args took 0.058740854263306 switch with 2 args took 0.030176162719727 cufa with 3 args took 0.051944971084595 switch with 3 args took 0.045972108840942 cufa with 4 args took 0.060306072235107 switch with 4 args took 0.041517019271851 cufa with 5 args took 0.065085887908936 switch with 5 args took 0.040901899337769
Output for 5.4.24
cufa with 0 args took 0.041290998458862 switch with 0 args took 0.027281999588013 cufa with 1 args took 0.050922155380249 switch with 1 args took 0.02648401260376 cufa with 2 args took 0.049815893173218 switch with 2 args took 0.029309988021851 cufa with 3 args took 0.052953958511353 switch with 3 args took 0.034955978393555 cufa with 4 args took 0.056279897689819 switch with 4 args took 0.037804126739502 cufa with 5 args took 0.058241128921509 switch with 5 args took 0.041436910629272
Output for 5.4.23
cufa with 0 args took 0.030586004257202 switch with 0 args took 0.02196192741394 cufa with 1 args took 0.045131206512451 switch with 1 args took 0.025990009307861 cufa with 2 args took 0.048882007598877 switch with 2 args took 0.029788970947266 cufa with 3 args took 0.051614046096802 switch with 3 args took 0.034446001052856 cufa with 4 args took 0.054924011230469 switch with 4 args took 0.038347005844116 cufa with 5 args took 0.05853009223938 switch with 5 args took 0.039941072463989
Output for 5.4.22
cufa with 0 args took 0.037845134735107 switch with 0 args took 0.025774955749512 cufa with 1 args took 0.046931028366089 switch with 1 args took 0.026453018188477 cufa with 2 args took 0.048732042312622 switch with 2 args took 0.030287027359009 cufa with 3 args took 0.052827835083008 switch with 3 args took 0.035430908203125 cufa with 4 args took 0.055423021316528 switch with 4 args took 0.037249803543091 cufa with 5 args took 0.058069944381714 switch with 5 args took 0.040745973587036
Output for 5.4.21
cufa with 0 args took 0.030151128768921 switch with 0 args took 0.02250599861145 cufa with 1 args took 0.048779964447021 switch with 1 args took 0.027264833450317 cufa with 2 args took 0.048777103424072 switch with 2 args took 0.029989004135132 cufa with 3 args took 0.052676916122437 switch with 3 args took 0.035059928894043 cufa with 4 args took 0.055785894393921 switch with 4 args took 0.037346839904785 cufa with 5 args took 0.058701992034912 switch with 5 args took 0.039614915847778
Output for 5.4.20
cufa with 0 args took 0.044400930404663 switch with 0 args took 0.028937816619873 cufa with 1 args took 0.053042888641357 switch with 1 args took 0.027080059051514 cufa with 2 args took 0.049954891204834 switch with 2 args took 0.029820919036865 cufa with 3 args took 0.053133964538574 switch with 3 args took 0.035965919494629 cufa with 4 args took 0.056223154067993 switch with 4 args took 0.038244009017944 cufa with 5 args took 0.059562921524048 switch with 5 args took 0.041513919830322
Output for 5.4.19
cufa with 0 args took 0.035612821578979 switch with 0 args took 0.024567842483521 cufa with 1 args took 0.046470880508423 switch with 1 args took 0.025007963180542 cufa with 2 args took 0.046383142471313 switch with 2 args took 0.028214931488037 cufa with 3 args took 0.05000114440918 switch with 3 args took 0.033066034317017 cufa with 4 args took 0.052879095077515 switch with 4 args took 0.035323143005371 cufa with 5 args took 0.055854082107544 switch with 5 args took 0.03868293762207
Output for 5.4.18
cufa with 0 args took 0.042298793792725 switch with 0 args took 0.0277259349823 cufa with 1 args took 0.051612138748169 switch with 1 args took 0.026558876037598 cufa with 2 args took 0.049250841140747 switch with 2 args took 0.029711961746216 cufa with 3 args took 0.052869081497192 switch with 3 args took 0.034714221954346 cufa with 4 args took 0.056003093719482 switch with 4 args took 0.037616014480591 cufa with 5 args took 0.058949947357178 switch with 5 args took 0.040892124176025
Output for 5.4.17
cufa with 0 args took 0.028840065002441 switch with 0 args took 0.022145986557007 cufa with 1 args took 0.045387029647827 switch with 1 args took 0.026132106781006 cufa with 2 args took 0.04951000213623 switch with 2 args took 0.03141188621521 cufa with 3 args took 0.051510810852051 switch with 3 args took 0.035351991653442 cufa with 4 args took 0.055424928665161 switch with 4 args took 0.038969993591309 cufa with 5 args took 0.059359788894653 switch with 5 args took 0.042500972747803
Output for 5.4.16
cufa with 0 args took 0.029597997665405 switch with 0 args took 0.022075176239014 cufa with 1 args took 0.045033931732178 switch with 1 args took 0.026836156845093 cufa with 2 args took 0.048507213592529 switch with 2 args took 0.02790093421936 cufa with 3 args took 0.046524047851562 switch with 3 args took 0.028082847595215 cufa with 4 args took 0.045647144317627 switch with 4 args took 0.029951810836792 cufa with 5 args took 0.047754049301147 switch with 5 args took 0.033348083496094
Output for 5.4.15
cufa with 0 args took 0.026869058609009 switch with 0 args took 0.019623041152954 cufa with 1 args took 0.037576913833618 switch with 1 args took 0.021775007247925 cufa with 2 args took 0.039927005767822 switch with 2 args took 0.025082111358643 cufa with 3 args took 0.043148994445801 switch with 3 args took 0.029040098190308 cufa with 4 args took 0.045736789703369 switch with 4 args took 0.030963182449341 cufa with 5 args took 0.047934055328369 switch with 5 args took 0.03386402130127
Output for 5.4.14
cufa with 0 args took 0.025451183319092 switch with 0 args took 0.018481016159058 cufa with 1 args took 0.037755012512207 switch with 1 args took 0.021785974502563 cufa with 2 args took 0.04046893119812 switch with 2 args took 0.024470090866089 cufa with 3 args took 0.043706178665161 switch with 3 args took 0.029645919799805 cufa with 4 args took 0.046993017196655 switch with 4 args took 0.031730175018311 cufa with 5 args took 0.049101114273071 switch with 5 args took 0.033466100692749
Output for 5.4.13
cufa with 0 args took 0.025023937225342 switch with 0 args took 0.019779920578003 cufa with 1 args took 0.038799047470093 switch with 1 args took 0.022000074386597 cufa with 2 args took 0.041336059570312 switch with 2 args took 0.024747133255005 cufa with 3 args took 0.044144868850708 switch with 3 args took 0.028813123703003 cufa with 4 args took 0.047264099121094 switch with 4 args took 0.031024217605591 cufa with 5 args took 0.048382043838501 switch with 5 args took 0.033854961395264
Output for 5.4.12
cufa with 0 args took 0.030012845993042 switch with 0 args took 0.022396087646484 cufa with 1 args took 0.047188997268677 switch with 1 args took 0.026541948318481 cufa with 2 args took 0.04951000213623 switch with 2 args took 0.029583930969238 cufa with 3 args took 0.052577972412109 switch with 3 args took 0.031863927841187 cufa with 4 args took 0.048969030380249 switch with 4 args took 0.031315803527832 cufa with 5 args took 0.048135995864868 switch with 5 args took 0.033451080322266
Output for 5.4.11
cufa with 0 args took 0.033190011978149 switch with 0 args took 0.026314973831177 cufa with 1 args took 0.049328088760376 switch with 1 args took 0.029374122619629 cufa with 2 args took 0.055732011795044 switch with 2 args took 0.032818078994751 cufa with 3 args took 0.053647994995117 switch with 3 args took 0.039484977722168 cufa with 4 args took 0.060100078582764 switch with 4 args took 0.043610811233521 cufa with 5 args took 0.066520929336548 switch with 5 args took 0.047665119171143
Output for 5.4.10
cufa with 0 args took 0.024826049804688 switch with 0 args took 0.018290042877197 cufa with 1 args took 0.038331031799316 switch with 1 args took 0.0223069190979 cufa with 2 args took 0.041497945785522 switch with 2 args took 0.025636911392212 cufa with 3 args took 0.04418683052063 switch with 3 args took 0.028720855712891 cufa with 4 args took 0.045891046524048 switch with 4 args took 0.030951023101807 cufa with 5 args took 0.048650979995728 switch with 5 args took 0.033498048782349
Output for 5.4.9
cufa with 0 args took 0.037614107131958 switch with 0 args took 0.0259850025177 cufa with 1 args took 0.044085025787354 switch with 1 args took 0.022696971893311 cufa with 2 args took 0.041914939880371 switch with 2 args took 0.025547027587891 cufa with 3 args took 0.057559013366699 switch with 3 args took 0.034635066986084 cufa with 4 args took 0.05599308013916 switch with 4 args took 0.038739919662476 cufa with 5 args took 0.059873104095459 switch with 5 args took 0.040849208831787
Output for 5.4.8
cufa with 0 args took 0.034658908843994 switch with 0 args took 0.023697853088379 cufa with 1 args took 0.046202182769775 switch with 1 args took 0.026286840438843 cufa with 2 args took 0.049359083175659 switch with 2 args took 0.030033111572266 cufa with 3 args took 0.053220987319946 switch with 3 args took 0.035063982009888 cufa with 4 args took 0.056452989578247 switch with 4 args took 0.037483930587769 cufa with 5 args took 0.060980081558228 switch with 5 args took 0.040481090545654
Output for 5.4.7
cufa with 0 args took 0.043658971786499 switch with 0 args took 0.028838872909546 cufa with 1 args took 0.053333044052124 switch with 1 args took 0.027476787567139 cufa with 2 args took 0.049144983291626 switch with 2 args took 0.029372930526733 cufa with 3 args took 0.053380012512207 switch with 3 args took 0.034430027008057 cufa with 4 args took 0.055607080459595 switch with 4 args took 0.036814212799072 cufa with 5 args took 0.05834698677063 switch with 5 args took 0.039949893951416
Output for 5.4.6
cufa with 0 args took 0.041468858718872 switch with 0 args took 0.025237083435059 cufa with 1 args took 0.046718835830688 switch with 1 args took 0.025938987731934 cufa with 2 args took 0.049427032470703 switch with 2 args took 0.029545068740845 cufa with 3 args took 0.052869081497192 switch with 3 args took 0.034391164779663 cufa with 4 args took 0.055520057678223 switch with 4 args took 0.036929845809937 cufa with 5 args took 0.062981128692627 switch with 5 args took 0.049478054046631
Output for 5.4.5
cufa with 0 args took 0.048022031784058 switch with 0 args took 0.030807018280029 cufa with 1 args took 0.055037975311279 switch with 1 args took 0.028217792510986 cufa with 2 args took 0.048658847808838 switch with 2 args took 0.029207944869995 cufa with 3 args took 0.051928997039795 switch with 3 args took 0.034212112426758 cufa with 4 args took 0.054927825927734 switch with 4 args took 0.036606073379517 cufa with 5 args took 0.057896852493286 switch with 5 args took 0.039792060852051
Output for 5.4.4
cufa with 0 args took 0.039220094680786 switch with 0 args took 0.025445938110352 cufa with 1 args took 0.047425031661987 switch with 1 args took 0.025965929031372 cufa with 2 args took 0.049059152603149 switch with 2 args took 0.029385805130005 cufa with 3 args took 0.052156925201416 switch with 3 args took 0.03393816947937 cufa with 4 args took 0.055307149887085 switch with 4 args took 0.036716938018799 cufa with 5 args took 0.058171987533569 switch with 5 args took 0.039810180664062
Output for 5.4.3
cufa with 0 args took 0.043973207473755 switch with 0 args took 0.029731035232544 cufa with 1 args took 0.053321838378906 switch with 1 args took 0.0274498462677 cufa with 2 args took 0.0484938621521 switch with 2 args took 0.029906988143921 cufa with 3 args took 0.052443027496338 switch with 3 args took 0.03438401222229 cufa with 4 args took 0.055150032043457 switch with 4 args took 0.037292003631592 cufa with 5 args took 0.058152914047241 switch with 5 args took 0.040198087692261
Output for 5.4.2
cufa with 0 args took 0.033169984817505 switch with 0 args took 0.022342205047607 cufa with 1 args took 0.048118114471436 switch with 1 args took 0.026014089584351 cufa with 2 args took 0.051389932632446 switch with 2 args took 0.029531002044678 cufa with 3 args took 0.054517984390259 switch with 3 args took 0.034718990325928 cufa with 4 args took 0.056892871856689 switch with 4 args took 0.036987066268921 cufa with 5 args took 0.060464143753052 switch with 5 args took 0.041085958480835
Output for 5.4.1
cufa with 0 args took 0.04465389251709 switch with 0 args took 0.030141115188599 cufa with 1 args took 0.053718090057373 switch with 1 args took 0.027645826339722 cufa with 2 args took 0.049134969711304 switch with 2 args took 0.029448986053467 cufa with 3 args took 0.051656007766724 switch with 3 args took 0.034657001495361 cufa with 4 args took 0.055184125900269 switch with 4 args took 0.036709070205688 cufa with 5 args took 0.057682037353516 switch with 5 args took 0.03989577293396
Output for 5.4.0
cufa with 0 args took 0.040487051010132 switch with 0 args took 0.023786067962646 cufa with 1 args took 0.046724081039429 switch with 1 args took 0.026132822036743 cufa with 2 args took 0.049116134643555 switch with 2 args took 0.029428005218506 cufa with 3 args took 0.052852869033813 switch with 3 args took 0.034324169158936 cufa with 4 args took 0.055101871490479 switch with 4 args took 0.036919832229614 cufa with 5 args took 0.05826997756958 switch with 5 args took 0.040327072143555
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/M4dqA 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/M4dqA on line 12
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/M4dqA on line 12
Process exited with code 255.

preferences:
189.31 ms | 401 KiB | 216 Q