Sk.builtin.float_.html 102 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JSDoc: Class: float_</title>
  6. <script src="scripts/prettify/prettify.js"> </script>
  7. <script src="scripts/prettify/lang-css.js"> </script>
  8. <!--[if lt IE 9]>
  9. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  10. <![endif]-->
  11. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  12. <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
  13. </head>
  14. <body>
  15. <div id="main">
  16. <h1 class="page-title">Class: float_</h1>
  17. <section>
  18. <header>
  19. <h2>
  20. <span class="ancestors"><a href="Sk.html">Sk</a><a href="Sk.builtin.html">.builtin</a>.</span>
  21. float_
  22. </h2>
  23. </header>
  24. <article>
  25. <div class="container-overview">
  26. <h4 class="name" id="float_"><span class="type-signature"></span>new float_<span class="signature">(x<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.float_.html">Sk.builtin.float_</a>}</span></h4>
  27. <div class="description">
  28. <p>Constructor for Python float. Also used for builtin float().</p>
  29. </div>
  30. <h5>Parameters:</h5>
  31. <table class="params">
  32. <thead>
  33. <tr>
  34. <th>Name</th>
  35. <th>Type</th>
  36. <th class="last">Description</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. <tr>
  41. <td class="name"><code>x</code></td>
  42. <td class="type">
  43. <span class="param-type">Object</span>
  44. |
  45. <span class="param-type">number</span>
  46. |
  47. <span class="param-type">string</span>
  48. </td>
  49. <td class="description last"><p>Object or number to convert to Python float.</p></td>
  50. </tr>
  51. </tbody>
  52. </table>
  53. <dl class="details">
  54. <dt class="tag-source">Source:</dt>
  55. <dd class="tag-source"><ul class="dummy"><li>
  56. <a href="float.js.html">float.js</a>, <a href="float.js.html#line5">line 5</a>
  57. </li></ul></dd>
  58. </dl>
  59. <h5>Returns:</h5>
  60. <div class="param-desc">
  61. <p>Python float</p>
  62. </div>
  63. <dl>
  64. <dt>
  65. Type
  66. </dt>
  67. <dd>
  68. <span class="param-type"><a href="Sk.builtin.float_.html">Sk.builtin.float_</a></span>
  69. </dd>
  70. </dl>
  71. </div>
  72. <h3 class="subsection-title">Extends</h3>
  73. <ul>
  74. <li><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></li>
  75. </ul>
  76. <h3 class="subsection-title">Members</h3>
  77. <h4 class="name" id="$r"><span class="type-signature"></span>$r<span class="type-signature"></span></h4>
  78. <div class="description">
  79. <p>Return the string representation of this instance.</p>
  80. <p>Javascript function, returns Python object.</p>
  81. </div>
  82. <dl class="details">
  83. <dt class="inherited-from">Inherited From:</dt>
  84. <dd class="inherited-from"><ul class="dummy"><li>
  85. <a href="Sk.builtin.object.html#$r">Sk.builtin.object#$r</a>
  86. </li></ul></dd>
  87. <dt class="tag-source">Source:</dt>
  88. <dd class="tag-source"><ul class="dummy"><li>
  89. <a href="object.js.html">object.js</a>, <a href="object.js.html#line253">line 253</a>
  90. </li></ul></dd>
  91. </dl>
  92. <h4 class="name" id="__abs__"><span class="type-signature"></span>__abs__<span class="type-signature"></span></h4>
  93. <div class="description">
  94. <p>Python wrapper of <code>__abs__</code> method.</p>
  95. </div>
  96. <dl class="details">
  97. <dt class="inherited-from">Inherited From:</dt>
  98. <dd class="inherited-from"><ul class="dummy"><li>
  99. <a href="Sk.builtin.numtype.html#__abs__">Sk.builtin.numtype#__abs__</a>
  100. </li></ul></dd>
  101. <dt class="tag-source">Source:</dt>
  102. <dd class="tag-source"><ul class="dummy"><li>
  103. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line22">line 22</a>
  104. </li></ul></dd>
  105. </dl>
  106. <h4 class="name" id="__add__"><span class="type-signature"></span>__add__<span class="type-signature"></span></h4>
  107. <div class="description">
  108. <p>Python wrapper of <code>__add__</code> method.</p>
  109. </div>
  110. <dl class="details">
  111. <dt class="inherited-from">Inherited From:</dt>
  112. <dd class="inherited-from"><ul class="dummy"><li>
  113. <a href="Sk.builtin.numtype.html#__add__">Sk.builtin.numtype#__add__</a>
  114. </li></ul></dd>
  115. <dt class="tag-source">Source:</dt>
  116. <dd class="tag-source"><ul class="dummy"><li>
  117. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line130">line 130</a>
  118. </li></ul></dd>
  119. </dl>
  120. <h4 class="name" id="__coerce__"><span class="type-signature"></span>__coerce__<span class="type-signature"></span></h4>
  121. <div class="description">
  122. <p>Python wrapper of <code>__coerce__</code> method.</p>
  123. </div>
  124. <dl class="details">
  125. <dt class="inherited-from">Inherited From:</dt>
  126. <dd class="inherited-from"><ul class="dummy"><li>
  127. <a href="Sk.builtin.numtype.html#__coerce__">Sk.builtin.numtype#__coerce__</a>
  128. </li></ul></dd>
  129. <dt class="tag-source">Source:</dt>
  130. <dd class="tag-source"><ul class="dummy"><li>
  131. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line418">line 418</a>
  132. </li></ul></dd>
  133. </dl>
  134. <h4 class="name" id="__div__"><span class="type-signature"></span>__div__<span class="type-signature"></span></h4>
  135. <div class="description">
  136. <p>Python wrapper of <code>__div__</code> method.</p>
  137. </div>
  138. <dl class="details">
  139. <dt class="inherited-from">Inherited From:</dt>
  140. <dd class="inherited-from"><ul class="dummy"><li>
  141. <a href="Sk.builtin.numtype.html#__div__">Sk.builtin.numtype#__div__</a>
  142. </li></ul></dd>
  143. <dt class="tag-source">Source:</dt>
  144. <dd class="tag-source"><ul class="dummy"><li>
  145. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line238">line 238</a>
  146. </li></ul></dd>
  147. </dl>
  148. <h4 class="name" id="__divmod__"><span class="type-signature"></span>__divmod__<span class="type-signature"></span></h4>
  149. <div class="description">
  150. <p>Python wrapper of <code>__divmod__</code> method.</p>
  151. </div>
  152. <dl class="details">
  153. <dt class="inherited-from">Inherited From:</dt>
  154. <dd class="inherited-from"><ul class="dummy"><li>
  155. <a href="Sk.builtin.numtype.html#__divmod__">Sk.builtin.numtype#__divmod__</a>
  156. </li></ul></dd>
  157. <dt class="tag-source">Source:</dt>
  158. <dd class="tag-source"><ul class="dummy"><li>
  159. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line346">line 346</a>
  160. </li></ul></dd>
  161. </dl>
  162. <h4 class="name" id="__eq__"><span class="type-signature"></span>__eq__<span class="type-signature"></span></h4>
  163. <div class="description">
  164. <p>Python wrapper for <code>__eq__</code> method.</p>
  165. </div>
  166. <dl class="details">
  167. <dt class="inherited-from">Inherited From:</dt>
  168. <dd class="inherited-from"><ul class="dummy"><li>
  169. <a href="Sk.builtin.object.html#__eq__">Sk.builtin.object#__eq__</a>
  170. </li></ul></dd>
  171. <dt class="tag-source">Source:</dt>
  172. <dd class="tag-source"><ul class="dummy"><li>
  173. <a href="object.js.html">object.js</a>, <a href="object.js.html#line179">line 179</a>
  174. </li></ul></dd>
  175. </dl>
  176. <h4 class="name" id="__float__"><span class="type-signature"></span>__float__<span class="type-signature"></span></h4>
  177. <div class="description">
  178. <p>Python wrapper of <code>__float__</code> method.</p>
  179. </div>
  180. <dl class="details">
  181. <dt class="inherited-from">Inherited From:</dt>
  182. <dd class="inherited-from"><ul class="dummy"><li>
  183. <a href="Sk.builtin.numtype.html#__float__">Sk.builtin.numtype#__float__</a>
  184. </li></ul></dd>
  185. <dt class="tag-source">Source:</dt>
  186. <dd class="tag-source"><ul class="dummy"><li>
  187. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line112">line 112</a>
  188. </li></ul></dd>
  189. </dl>
  190. <h4 class="name" id="__floordiv__"><span class="type-signature"></span>__floordiv__<span class="type-signature"></span></h4>
  191. <div class="description">
  192. <p>Python wrapper of <code>__floordiv__</code> method.</p>
  193. </div>
  194. <dl class="details">
  195. <dt class="inherited-from">Inherited From:</dt>
  196. <dd class="inherited-from"><ul class="dummy"><li>
  197. <a href="Sk.builtin.numtype.html#__floordiv__">Sk.builtin.numtype#__floordiv__</a>
  198. </li></ul></dd>
  199. <dt class="tag-source">Source:</dt>
  200. <dd class="tag-source"><ul class="dummy"><li>
  201. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line274">line 274</a>
  202. </li></ul></dd>
  203. </dl>
  204. <h4 class="name" id="__ge__"><span class="type-signature"></span>__ge__<span class="type-signature"></span></h4>
  205. <div class="description">
  206. <p>Python wrapper for <code>__ge__</code> method.</p>
  207. </div>
  208. <dl class="details">
  209. <dt class="inherited-from">Inherited From:</dt>
  210. <dd class="inherited-from"><ul class="dummy"><li>
  211. <a href="Sk.builtin.object.html#__ge__">Sk.builtin.object#__ge__</a>
  212. </li></ul></dd>
  213. <dt class="tag-source">Source:</dt>
  214. <dd class="tag-source"><ul class="dummy"><li>
  215. <a href="object.js.html">object.js</a>, <a href="object.js.html#line239">line 239</a>
  216. </li></ul></dd>
  217. </dl>
  218. <h4 class="name" id="__gt__"><span class="type-signature"></span>__gt__<span class="type-signature"></span></h4>
  219. <div class="description">
  220. <p>Python wrapper for <code>__gt__</code> method.</p>
  221. </div>
  222. <dl class="details">
  223. <dt class="inherited-from">Inherited From:</dt>
  224. <dd class="inherited-from"><ul class="dummy"><li>
  225. <a href="Sk.builtin.object.html#__gt__">Sk.builtin.object#__gt__</a>
  226. </li></ul></dd>
  227. <dt class="tag-source">Source:</dt>
  228. <dd class="tag-source"><ul class="dummy"><li>
  229. <a href="object.js.html">object.js</a>, <a href="object.js.html#line227">line 227</a>
  230. </li></ul></dd>
  231. </dl>
  232. <h4 class="name" id="__hash__"><span class="type-signature"></span>__hash__<span class="type-signature"></span></h4>
  233. <div class="description">
  234. <p>Python wrapper for <code>__hash__</code> method.</p>
  235. </div>
  236. <dl class="details">
  237. <dt class="inherited-from">Inherited From:</dt>
  238. <dd class="inherited-from"><ul class="dummy"><li>
  239. <a href="Sk.builtin.object.html#__hash__">Sk.builtin.object#__hash__</a>
  240. </li></ul></dd>
  241. <dt class="tag-source">Source:</dt>
  242. <dd class="tag-source"><ul class="dummy"><li>
  243. <a href="object.js.html">object.js</a>, <a href="object.js.html#line167">line 167</a>
  244. </li></ul></dd>
  245. </dl>
  246. <h4 class="name" id="__int__"><span class="type-signature"></span>__int__<span class="type-signature"></span></h4>
  247. <div class="description">
  248. <p>Python wrapper of <code>__int__</code> method.</p>
  249. </div>
  250. <dl class="details">
  251. <dt class="inherited-from">Inherited From:</dt>
  252. <dd class="inherited-from"><ul class="dummy"><li>
  253. <a href="Sk.builtin.numtype.html#__int__">Sk.builtin.numtype#__int__</a>
  254. </li></ul></dd>
  255. <dt class="tag-source">Source:</dt>
  256. <dd class="tag-source"><ul class="dummy"><li>
  257. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line76">line 76</a>
  258. </li></ul></dd>
  259. </dl>
  260. <h4 class="name" id="__le__"><span class="type-signature"></span>__le__<span class="type-signature"></span></h4>
  261. <div class="description">
  262. <p>Python wrapper for <code>__le__</code> method.</p>
  263. </div>
  264. <dl class="details">
  265. <dt class="inherited-from">Inherited From:</dt>
  266. <dd class="inherited-from"><ul class="dummy"><li>
  267. <a href="Sk.builtin.object.html#__le__">Sk.builtin.object#__le__</a>
  268. </li></ul></dd>
  269. <dt class="tag-source">Source:</dt>
  270. <dd class="tag-source"><ul class="dummy"><li>
  271. <a href="object.js.html">object.js</a>, <a href="object.js.html#line215">line 215</a>
  272. </li></ul></dd>
  273. </dl>
  274. <h4 class="name" id="__long__"><span class="type-signature"></span>__long__<span class="type-signature"></span></h4>
  275. <div class="description">
  276. <p>Python wrapper of <code>__long__</code> method.</p>
  277. </div>
  278. <dl class="details">
  279. <dt class="inherited-from">Inherited From:</dt>
  280. <dd class="inherited-from"><ul class="dummy"><li>
  281. <a href="Sk.builtin.numtype.html#__long__">Sk.builtin.numtype#__long__</a>
  282. </li></ul></dd>
  283. <dt class="tag-source">Source:</dt>
  284. <dd class="tag-source"><ul class="dummy"><li>
  285. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line94">line 94</a>
  286. </li></ul></dd>
  287. </dl>
  288. <h4 class="name" id="__lt__"><span class="type-signature"></span>__lt__<span class="type-signature"></span></h4>
  289. <div class="description">
  290. <p>Python wrapper for <code>__lt__</code> method.</p>
  291. </div>
  292. <dl class="details">
  293. <dt class="inherited-from">Inherited From:</dt>
  294. <dd class="inherited-from"><ul class="dummy"><li>
  295. <a href="Sk.builtin.object.html#__lt__">Sk.builtin.object#__lt__</a>
  296. </li></ul></dd>
  297. <dt class="tag-source">Source:</dt>
  298. <dd class="tag-source"><ul class="dummy"><li>
  299. <a href="object.js.html">object.js</a>, <a href="object.js.html#line203">line 203</a>
  300. </li></ul></dd>
  301. </dl>
  302. <h4 class="name" id="__mod__"><span class="type-signature"></span>__mod__<span class="type-signature"></span></h4>
  303. <div class="description">
  304. <p>Python wrapper of <code>__mod__</code> method.</p>
  305. </div>
  306. <dl class="details">
  307. <dt class="inherited-from">Inherited From:</dt>
  308. <dd class="inherited-from"><ul class="dummy"><li>
  309. <a href="Sk.builtin.numtype.html#__mod__">Sk.builtin.numtype#__mod__</a>
  310. </li></ul></dd>
  311. <dt class="tag-source">Source:</dt>
  312. <dd class="tag-source"><ul class="dummy"><li>
  313. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line310">line 310</a>
  314. </li></ul></dd>
  315. </dl>
  316. <h4 class="name" id="__mul__"><span class="type-signature"></span>__mul__<span class="type-signature"></span></h4>
  317. <div class="description">
  318. <p>Python wrapper of <code>__mul__</code> method.</p>
  319. </div>
  320. <dl class="details">
  321. <dt class="inherited-from">Inherited From:</dt>
  322. <dd class="inherited-from"><ul class="dummy"><li>
  323. <a href="Sk.builtin.numtype.html#__mul__">Sk.builtin.numtype#__mul__</a>
  324. </li></ul></dd>
  325. <dt class="tag-source">Source:</dt>
  326. <dd class="tag-source"><ul class="dummy"><li>
  327. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line202">line 202</a>
  328. </li></ul></dd>
  329. </dl>
  330. <h4 class="name" id="__ne__"><span class="type-signature"></span>__ne__<span class="type-signature"></span></h4>
  331. <div class="description">
  332. <p>Python wrapper for <code>__ne__</code> method.</p>
  333. </div>
  334. <dl class="details">
  335. <dt class="inherited-from">Inherited From:</dt>
  336. <dd class="inherited-from"><ul class="dummy"><li>
  337. <a href="Sk.builtin.object.html#__ne__">Sk.builtin.object#__ne__</a>
  338. </li></ul></dd>
  339. <dt class="tag-source">Source:</dt>
  340. <dd class="tag-source"><ul class="dummy"><li>
  341. <a href="object.js.html">object.js</a>, <a href="object.js.html#line191">line 191</a>
  342. </li></ul></dd>
  343. </dl>
  344. <h4 class="name" id="__neg__"><span class="type-signature"></span>__neg__<span class="type-signature"></span></h4>
  345. <div class="description">
  346. <p>Python wrapper of <code>__neg__</code> method.</p>
  347. </div>
  348. <dl class="details">
  349. <dt class="inherited-from">Inherited From:</dt>
  350. <dd class="inherited-from"><ul class="dummy"><li>
  351. <a href="Sk.builtin.numtype.html#__neg__">Sk.builtin.numtype#__neg__</a>
  352. </li></ul></dd>
  353. <dt class="tag-source">Source:</dt>
  354. <dd class="tag-source"><ul class="dummy"><li>
  355. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line40">line 40</a>
  356. </li></ul></dd>
  357. </dl>
  358. <h4 class="name" id="__pos__"><span class="type-signature"></span>__pos__<span class="type-signature"></span></h4>
  359. <div class="description">
  360. <p>Python wrapper of <code>__pos__</code> method.</p>
  361. </div>
  362. <dl class="details">
  363. <dt class="inherited-from">Inherited From:</dt>
  364. <dd class="inherited-from"><ul class="dummy"><li>
  365. <a href="Sk.builtin.numtype.html#__pos__">Sk.builtin.numtype#__pos__</a>
  366. </li></ul></dd>
  367. <dt class="tag-source">Source:</dt>
  368. <dd class="tag-source"><ul class="dummy"><li>
  369. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line58">line 58</a>
  370. </li></ul></dd>
  371. </dl>
  372. <h4 class="name" id="__pow__"><span class="type-signature"></span>__pow__<span class="type-signature"></span></h4>
  373. <div class="description">
  374. <p>Python wrapper of <code>__pow__</code> method.</p>
  375. </div>
  376. <dl class="details">
  377. <dt class="inherited-from">Inherited From:</dt>
  378. <dd class="inherited-from"><ul class="dummy"><li>
  379. <a href="Sk.builtin.numtype.html#__pow__">Sk.builtin.numtype#__pow__</a>
  380. </li></ul></dd>
  381. <dt class="tag-source">Source:</dt>
  382. <dd class="tag-source"><ul class="dummy"><li>
  383. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line382">line 382</a>
  384. </li></ul></dd>
  385. </dl>
  386. <h4 class="name" id="__radd__"><span class="type-signature"></span>__radd__<span class="type-signature"></span></h4>
  387. <div class="description">
  388. <p>Python wrapper of <code>__radd__</code> method.</p>
  389. </div>
  390. <dl class="details">
  391. <dt class="inherited-from">Inherited From:</dt>
  392. <dd class="inherited-from"><ul class="dummy"><li>
  393. <a href="Sk.builtin.numtype.html#__radd__">Sk.builtin.numtype#__radd__</a>
  394. </li></ul></dd>
  395. <dt class="tag-source">Source:</dt>
  396. <dd class="tag-source"><ul class="dummy"><li>
  397. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line148">line 148</a>
  398. </li></ul></dd>
  399. </dl>
  400. <h4 class="name" id="__rdiv__"><span class="type-signature"></span>__rdiv__<span class="type-signature"></span></h4>
  401. <div class="description">
  402. <p>Python wrapper of <code>__rdiv__</code> method.</p>
  403. </div>
  404. <dl class="details">
  405. <dt class="inherited-from">Inherited From:</dt>
  406. <dd class="inherited-from"><ul class="dummy"><li>
  407. <a href="Sk.builtin.numtype.html#__rdiv__">Sk.builtin.numtype#__rdiv__</a>
  408. </li></ul></dd>
  409. <dt class="tag-source">Source:</dt>
  410. <dd class="tag-source"><ul class="dummy"><li>
  411. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line256">line 256</a>
  412. </li></ul></dd>
  413. </dl>
  414. <h4 class="name" id="__rdivmod__"><span class="type-signature"></span>__rdivmod__<span class="type-signature"></span></h4>
  415. <div class="description">
  416. <p>Python wrapper of <code>__rdivmod__</code> method.</p>
  417. </div>
  418. <dl class="details">
  419. <dt class="inherited-from">Inherited From:</dt>
  420. <dd class="inherited-from"><ul class="dummy"><li>
  421. <a href="Sk.builtin.numtype.html#__rdivmod__">Sk.builtin.numtype#__rdivmod__</a>
  422. </li></ul></dd>
  423. <dt class="tag-source">Source:</dt>
  424. <dd class="tag-source"><ul class="dummy"><li>
  425. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line364">line 364</a>
  426. </li></ul></dd>
  427. </dl>
  428. <h4 class="name" id="__repr__"><span class="type-signature"></span>__repr__<span class="type-signature"></span></h4>
  429. <div class="description">
  430. <p>Python wrapper for <code>__repr__</code> method.</p>
  431. </div>
  432. <dl class="details">
  433. <dt class="inherited-from">Inherited From:</dt>
  434. <dd class="inherited-from"><ul class="dummy"><li>
  435. <a href="Sk.builtin.object.html#__repr__">Sk.builtin.object#__repr__</a>
  436. </li></ul></dd>
  437. <dt class="tag-source">Source:</dt>
  438. <dd class="tag-source"><ul class="dummy"><li>
  439. <a href="object.js.html">object.js</a>, <a href="object.js.html#line143">line 143</a>
  440. </li></ul></dd>
  441. </dl>
  442. <h4 class="name" id="__rfloordiv__"><span class="type-signature"></span>__rfloordiv__<span class="type-signature"></span></h4>
  443. <div class="description">
  444. <p>Python wrapper of <code>__rfloordiv__</code> method.</p>
  445. </div>
  446. <dl class="details">
  447. <dt class="inherited-from">Inherited From:</dt>
  448. <dd class="inherited-from"><ul class="dummy"><li>
  449. <a href="Sk.builtin.numtype.html#__rfloordiv__">Sk.builtin.numtype#__rfloordiv__</a>
  450. </li></ul></dd>
  451. <dt class="tag-source">Source:</dt>
  452. <dd class="tag-source"><ul class="dummy"><li>
  453. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line292">line 292</a>
  454. </li></ul></dd>
  455. </dl>
  456. <h4 class="name" id="__rmod__"><span class="type-signature"></span>__rmod__<span class="type-signature"></span></h4>
  457. <div class="description">
  458. <p>Python wrapper of <code>__rmod__</code> method.</p>
  459. </div>
  460. <dl class="details">
  461. <dt class="inherited-from">Inherited From:</dt>
  462. <dd class="inherited-from"><ul class="dummy"><li>
  463. <a href="Sk.builtin.numtype.html#__rmod__">Sk.builtin.numtype#__rmod__</a>
  464. </li></ul></dd>
  465. <dt class="tag-source">Source:</dt>
  466. <dd class="tag-source"><ul class="dummy"><li>
  467. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line328">line 328</a>
  468. </li></ul></dd>
  469. </dl>
  470. <h4 class="name" id="__rmul__"><span class="type-signature"></span>__rmul__<span class="type-signature"></span></h4>
  471. <div class="description">
  472. <p>Python wrapper of <code>__rmul__</code> method.</p>
  473. </div>
  474. <dl class="details">
  475. <dt class="inherited-from">Inherited From:</dt>
  476. <dd class="inherited-from"><ul class="dummy"><li>
  477. <a href="Sk.builtin.numtype.html#__rmul__">Sk.builtin.numtype#__rmul__</a>
  478. </li></ul></dd>
  479. <dt class="tag-source">Source:</dt>
  480. <dd class="tag-source"><ul class="dummy"><li>
  481. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line220">line 220</a>
  482. </li></ul></dd>
  483. </dl>
  484. <h4 class="name" id="__rpow__"><span class="type-signature"></span>__rpow__<span class="type-signature"></span></h4>
  485. <div class="description">
  486. <p>Python wrapper of <code>__rpow__</code> method.</p>
  487. </div>
  488. <dl class="details">
  489. <dt class="inherited-from">Inherited From:</dt>
  490. <dd class="inherited-from"><ul class="dummy"><li>
  491. <a href="Sk.builtin.numtype.html#__rpow__">Sk.builtin.numtype#__rpow__</a>
  492. </li></ul></dd>
  493. <dt class="tag-source">Source:</dt>
  494. <dd class="tag-source"><ul class="dummy"><li>
  495. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line400">line 400</a>
  496. </li></ul></dd>
  497. </dl>
  498. <h4 class="name" id="__rsub__"><span class="type-signature"></span>__rsub__<span class="type-signature"></span></h4>
  499. <div class="description">
  500. <p>Python wrapper of <code>__rsub__</code> method.</p>
  501. </div>
  502. <dl class="details">
  503. <dt class="inherited-from">Inherited From:</dt>
  504. <dd class="inherited-from"><ul class="dummy"><li>
  505. <a href="Sk.builtin.numtype.html#__rsub__">Sk.builtin.numtype#__rsub__</a>
  506. </li></ul></dd>
  507. <dt class="tag-source">Source:</dt>
  508. <dd class="tag-source"><ul class="dummy"><li>
  509. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line184">line 184</a>
  510. </li></ul></dd>
  511. </dl>
  512. <h4 class="name" id="__str__"><span class="type-signature"></span>__str__<span class="type-signature"></span></h4>
  513. <div class="description">
  514. <p>Python wrapper for <code>__str__</code> method.</p>
  515. </div>
  516. <dl class="details">
  517. <dt class="inherited-from">Inherited From:</dt>
  518. <dd class="inherited-from"><ul class="dummy"><li>
  519. <a href="Sk.builtin.object.html#__str__">Sk.builtin.object#__str__</a>
  520. </li></ul></dd>
  521. <dt class="tag-source">Source:</dt>
  522. <dd class="tag-source"><ul class="dummy"><li>
  523. <a href="object.js.html">object.js</a>, <a href="object.js.html#line155">line 155</a>
  524. </li></ul></dd>
  525. </dl>
  526. <h4 class="name" id="__sub__"><span class="type-signature"></span>__sub__<span class="type-signature"></span></h4>
  527. <div class="description">
  528. <p>Python wrapper of <code>__sub__</code> method.</p>
  529. </div>
  530. <dl class="details">
  531. <dt class="inherited-from">Inherited From:</dt>
  532. <dd class="inherited-from"><ul class="dummy"><li>
  533. <a href="Sk.builtin.numtype.html#__sub__">Sk.builtin.numtype#__sub__</a>
  534. </li></ul></dd>
  535. <dt class="tag-source">Source:</dt>
  536. <dd class="tag-source"><ul class="dummy"><li>
  537. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line166">line 166</a>
  538. </li></ul></dd>
  539. </dl>
  540. <h4 class="name" id="nb$inplace_add"><span class="type-signature"></span>nb$inplace_add<span class="type-signature"></span></h4>
  541. <dl class="details">
  542. <dt class="tag-source">Source:</dt>
  543. <dd class="tag-source"><ul class="dummy"><li>
  544. <a href="float.js.html">float.js</a>, <a href="float.js.html#line589">line 589</a>
  545. </li></ul></dd>
  546. </dl>
  547. <h4 class="name" id="nb$inplace_divide"><span class="type-signature"></span>nb$inplace_divide<span class="type-signature"></span></h4>
  548. <dl class="details">
  549. <dt class="tag-source">Source:</dt>
  550. <dd class="tag-source"><ul class="dummy"><li>
  551. <a href="float.js.html">float.js</a>, <a href="float.js.html#line598">line 598</a>
  552. </li></ul></dd>
  553. </dl>
  554. <h4 class="name" id="nb$inplace_floor_divide"><span class="type-signature"></span>nb$inplace_floor_divide<span class="type-signature"></span></h4>
  555. <dl class="details">
  556. <dt class="tag-source">Source:</dt>
  557. <dd class="tag-source"><ul class="dummy"><li>
  558. <a href="float.js.html">float.js</a>, <a href="float.js.html#line604">line 604</a>
  559. </li></ul></dd>
  560. </dl>
  561. <h4 class="name" id="nb$inplace_multiply"><span class="type-signature"></span>nb$inplace_multiply<span class="type-signature"></span></h4>
  562. <dl class="details">
  563. <dt class="tag-source">Source:</dt>
  564. <dd class="tag-source"><ul class="dummy"><li>
  565. <a href="float.js.html">float.js</a>, <a href="float.js.html#line595">line 595</a>
  566. </li></ul></dd>
  567. </dl>
  568. <h4 class="name" id="nb$inplace_power"><span class="type-signature"></span>nb$inplace_power<span class="type-signature"></span></h4>
  569. <dl class="details">
  570. <dt class="tag-source">Source:</dt>
  571. <dd class="tag-source"><ul class="dummy"><li>
  572. <a href="float.js.html">float.js</a>, <a href="float.js.html#line607">line 607</a>
  573. </li></ul></dd>
  574. </dl>
  575. <h4 class="name" id="nb$inplace_remainder"><span class="type-signature"></span>nb$inplace_remainder<span class="type-signature"></span></h4>
  576. <dl class="details">
  577. <dt class="tag-source">Source:</dt>
  578. <dd class="tag-source"><ul class="dummy"><li>
  579. <a href="float.js.html">float.js</a>, <a href="float.js.html#line601">line 601</a>
  580. </li></ul></dd>
  581. </dl>
  582. <h4 class="name" id="nb$inplace_subtract"><span class="type-signature"></span>nb$inplace_subtract<span class="type-signature"></span></h4>
  583. <dl class="details">
  584. <dt class="tag-source">Source:</dt>
  585. <dd class="tag-source"><ul class="dummy"><li>
  586. <a href="float.js.html">float.js</a>, <a href="float.js.html#line592">line 592</a>
  587. </li></ul></dd>
  588. </dl>
  589. <h4 class="name" id="ob$type"><span class="type-signature"></span>ob$type<span class="type-signature"> :Sk.builtin.type</span></h4>
  590. <div class="description">
  591. <p>The type object of this class.</p>
  592. </div>
  593. <h5>Type:</h5>
  594. <ul>
  595. <li>
  596. <span class="param-type">Sk.builtin.type</span>
  597. </li>
  598. </ul>
  599. <dl class="details">
  600. <dt class="inherited-from">Inherited From:</dt>
  601. <dd class="inherited-from"><ul class="dummy"><li>
  602. <a href="Sk.builtin.object.html#ob$type">Sk.builtin.object#ob$type</a>
  603. </li></ul></dd>
  604. <dt class="tag-source">Source:</dt>
  605. <dd class="tag-source"><ul class="dummy"><li>
  606. <a href="object.js.html">object.js</a>, <a href="object.js.html#line138">line 138</a>
  607. </li></ul></dd>
  608. </dl>
  609. <h4 class="name" id="tp$name"><span class="type-signature"></span>tp$name<span class="type-signature"> :string</span></h4>
  610. <div class="description">
  611. <p>The name of this class.</p>
  612. </div>
  613. <h5>Type:</h5>
  614. <ul>
  615. <li>
  616. <span class="param-type">string</span>
  617. </li>
  618. </ul>
  619. <dl class="details">
  620. <dt class="inherited-from">Inherited From:</dt>
  621. <dd class="inherited-from"><ul class="dummy"><li>
  622. <a href="Sk.builtin.object.html#tp$name">Sk.builtin.object#tp$name</a>
  623. </li></ul></dd>
  624. <dt class="tag-source">Source:</dt>
  625. <dd class="tag-source"><ul class="dummy"><li>
  626. <a href="object.js.html">object.js</a>, <a href="object.js.html#line132">line 132</a>
  627. </li></ul></dd>
  628. </dl>
  629. <h3 class="subsection-title">Methods</h3>
  630. <h4 class="name" id=".PyFloat_Check"><span class="type-signature">(static) </span>PyFloat_Check<span class="signature">(op)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  631. <div class="description">
  632. <p>Checks for float subtypes, though skulpt does not allow to
  633. extend them for now.</p>
  634. <p>Javascript function, returns Javascript object.</p>
  635. </div>
  636. <h5>Parameters:</h5>
  637. <table class="params">
  638. <thead>
  639. <tr>
  640. <th>Name</th>
  641. <th>Type</th>
  642. <th class="last">Description</th>
  643. </tr>
  644. </thead>
  645. <tbody>
  646. <tr>
  647. <td class="name"><code>op</code></td>
  648. <td class="type">
  649. <span class="param-type">Object</span>
  650. </td>
  651. <td class="description last"><p>The object to check as subtype.</p></td>
  652. </tr>
  653. </tbody>
  654. </table>
  655. <dl class="details">
  656. <dt class="tag-source">Source:</dt>
  657. <dd class="tag-source"><ul class="dummy"><li>
  658. <a href="float.js.html">float.js</a>, <a href="float.js.html#line108">line 108</a>
  659. </li></ul></dd>
  660. </dl>
  661. <h5>Returns:</h5>
  662. <div class="param-desc">
  663. <p>true if op is a subtype of Sk.builtin.float_, false otherwise</p>
  664. </div>
  665. <dl>
  666. <dt>
  667. Type
  668. </dt>
  669. <dd>
  670. <span class="param-type">boolean</span>
  671. </dd>
  672. </dl>
  673. <h4 class="name" id=".PyFloat_Check_Exact"><span class="type-signature">(static) </span>PyFloat_Check_Exact<span class="signature">(op)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  674. <div class="description">
  675. <p>Checks if ob is a Python float.</p>
  676. <p>This method is just a wrapper, but uses the correct cpython API name.</p>
  677. <p>Javascript function, returns Javascript object.</p>
  678. </div>
  679. <h5>Parameters:</h5>
  680. <table class="params">
  681. <thead>
  682. <tr>
  683. <th>Name</th>
  684. <th>Type</th>
  685. <th class="last">Description</th>
  686. </tr>
  687. </thead>
  688. <tbody>
  689. <tr>
  690. <td class="name"><code>op</code></td>
  691. <td class="type">
  692. <span class="param-type">Object</span>
  693. </td>
  694. <td class="description last"><p>The object to check.</p></td>
  695. </tr>
  696. </tbody>
  697. </table>
  698. <dl class="details">
  699. <dt class="tag-source">Source:</dt>
  700. <dd class="tag-source"><ul class="dummy"><li>
  701. <a href="float.js.html">float.js</a>, <a href="float.js.html#line139">line 139</a>
  702. </li></ul></dd>
  703. </dl>
  704. <h5>Returns:</h5>
  705. <div class="param-desc">
  706. <p>true if op is an instance of Sk.builtin.float_, false otherwise</p>
  707. </div>
  708. <dl>
  709. <dt>
  710. Type
  711. </dt>
  712. <dd>
  713. <span class="param-type">boolean</span>
  714. </dd>
  715. </dl>
  716. <h4 class="name" id="__round__"><span class="type-signature"></span>__round__<span class="signature">(self, ndigits)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.float_.html">Sk.builtin.float_</a>}</span></h4>
  717. <div class="description">
  718. <p>Round this instance to a given number of digits, or zero if omitted.</p>
  719. <p>Implements <code>__round__</code> dunder method.</p>
  720. <p>Javascript function, returns Python object.</p>
  721. </div>
  722. <h5>Parameters:</h5>
  723. <table class="params">
  724. <thead>
  725. <tr>
  726. <th>Name</th>
  727. <th>Type</th>
  728. <th class="last">Description</th>
  729. </tr>
  730. </thead>
  731. <tbody>
  732. <tr>
  733. <td class="name"><code>self</code></td>
  734. <td class="type">
  735. <span class="param-type"><a href="Sk.builtin.int_.html">Sk.builtin.int_</a></span>
  736. </td>
  737. <td class="description last"><p>This instance.</p></td>
  738. </tr>
  739. <tr>
  740. <td class="name"><code>ndigits</code></td>
  741. <td class="type">
  742. <span class="param-type">Object</span>
  743. |
  744. <span class="param-type">number</span>
  745. </td>
  746. <td class="description last"><p>The number of digits after the decimal point to which to round.</p></td>
  747. </tr>
  748. </tbody>
  749. </table>
  750. <dl class="details">
  751. <dt class="tag-source">Source:</dt>
  752. <dd class="tag-source"><ul class="dummy"><li>
  753. <a href="float.js.html">float.js</a>, <a href="float.js.html#line764">line 764</a>
  754. </li></ul></dd>
  755. </dl>
  756. <h5>Returns:</h5>
  757. <div class="param-desc">
  758. <p>The rounded float.</p>
  759. </div>
  760. <dl>
  761. <dt>
  762. Type
  763. </dt>
  764. <dd>
  765. <span class="param-type"><a href="Sk.builtin.float_.html">Sk.builtin.float_</a></span>
  766. </dd>
  767. </dl>
  768. <h4 class="name" id="clone"><span class="type-signature"></span>clone<span class="signature">()</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.float_.html">Sk.builtin.float_</a>}</span></h4>
  769. <div class="description">
  770. <p>Returns a copy of this instance.</p>
  771. <p>Javascript function, returns Python object.</p>
  772. </div>
  773. <dl class="details">
  774. <dt class="tag-source">Source:</dt>
  775. <dd class="tag-source"><ul class="dummy"><li>
  776. <a href="float.js.html">float.js</a>, <a href="float.js.html#line202">line 202</a>
  777. </li></ul></dd>
  778. </dl>
  779. <h5>Returns:</h5>
  780. <div class="param-desc">
  781. <p>The copy</p>
  782. </div>
  783. <dl>
  784. <dt>
  785. Type
  786. </dt>
  787. <dd>
  788. <span class="param-type"><a href="Sk.builtin.float_.html">Sk.builtin.float_</a></span>
  789. </dd>
  790. </dl>
  791. <h4 class="name" id="GenericGetAttr"><span class="type-signature"></span>GenericGetAttr<span class="signature">()</span><span class="type-signature"> &rarr; {undefined}</span></h4>
  792. <dl class="details">
  793. <dt class="inherited-from">Inherited From:</dt>
  794. <dd class="inherited-from"><ul class="dummy"><li>
  795. <a href="Sk.builtin.object.html#GenericGetAttr">Sk.builtin.object#GenericGetAttr</a>
  796. </li></ul></dd>
  797. <dt class="tag-source">Source:</dt>
  798. <dd class="tag-source"><ul class="dummy"><li>
  799. <a href="object.js.html">object.js</a>, <a href="object.js.html#line26">line 26</a>
  800. </li></ul></dd>
  801. </dl>
  802. <h5>Returns:</h5>
  803. <dl>
  804. <dt>
  805. Type
  806. </dt>
  807. <dd>
  808. <span class="param-type">undefined</span>
  809. </dd>
  810. </dl>
  811. <h4 class="name" id="nb$abs"><span class="type-signature"></span>nb$abs<span class="signature">()</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  812. <div class="description">
  813. <p>Compute the absolute value of this instance and return.</p>
  814. <p>Javascript function, returns Python object.</p>
  815. </div>
  816. <dl class="details">
  817. <dt class="tag-overrides">Overrides:</dt>
  818. <dd class="tag-overrides"><ul class="dummy"><li>
  819. <a href="Sk.builtin.numtype.html#nb$abs">Sk.builtin.numtype#nb$abs</a>
  820. </li></ul></dd>
  821. <dt class="tag-source">Source:</dt>
  822. <dd class="tag-source"><ul class="dummy"><li>
  823. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line615">line 615</a>
  824. </li></ul></dd>
  825. </dl>
  826. <h5>Returns:</h5>
  827. <div class="param-desc">
  828. <p>The absolute value</p>
  829. </div>
  830. <dl>
  831. <dt>
  832. Type
  833. </dt>
  834. <dd>
  835. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  836. |
  837. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  838. </dd>
  839. </dl>
  840. <h4 class="name" id="nb$add"><span class="type-signature"></span>nb$add<span class="signature">(other<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  841. <div class="description">
  842. <p>Add a Python object to this instance and return the result (i.e. this + other).</p>
  843. <p>Returns NotImplemented if addition between this type and other type is unsupported.</p>
  844. <p>Javscript function, returns Python object.</p>
  845. </div>
  846. <h5>Parameters:</h5>
  847. <table class="params">
  848. <thead>
  849. <tr>
  850. <th>Name</th>
  851. <th>Type</th>
  852. <th class="last">Description</th>
  853. </tr>
  854. </thead>
  855. <tbody>
  856. <tr>
  857. <td class="name"><code>other</code></td>
  858. <td class="type">
  859. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  860. </td>
  861. <td class="description last"><p>The Python object to add.</p></td>
  862. </tr>
  863. </tbody>
  864. </table>
  865. <dl class="details">
  866. <dt class="tag-overrides">Overrides:</dt>
  867. <dd class="tag-overrides"><ul class="dummy"><li>
  868. <a href="Sk.builtin.numtype.html#nb$add">Sk.builtin.numtype#nb$add</a>
  869. </li></ul></dd>
  870. <dt class="tag-source">Source:</dt>
  871. <dd class="tag-source"><ul class="dummy"><li>
  872. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line441">line 441</a>
  873. </li></ul></dd>
  874. </dl>
  875. <h5>Returns:</h5>
  876. <div class="param-desc">
  877. <p>The result of the addition.</p>
  878. </div>
  879. <dl>
  880. <dt>
  881. Type
  882. </dt>
  883. <dd>
  884. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  885. |
  886. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  887. </dd>
  888. </dl>
  889. <h4 class="name" id="nb$divide"><span class="type-signature"></span>nb$divide<span class="signature">(other<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  890. <div class="description">
  891. <p>Divide this instance by a Python object and return the result (i.e this / other).</p>
  892. <p>Returns NotImplemented if division between this type and other type is unsupported.</p>
  893. <p>Javscript function, returns Python object.</p>
  894. </div>
  895. <h5>Parameters:</h5>
  896. <table class="params">
  897. <thead>
  898. <tr>
  899. <th>Name</th>
  900. <th>Type</th>
  901. <th class="last">Description</th>
  902. </tr>
  903. </thead>
  904. <tbody>
  905. <tr>
  906. <td class="name"><code>other</code></td>
  907. <td class="type">
  908. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  909. </td>
  910. <td class="description last"><p>The divisor, which must be a Python object.</p></td>
  911. </tr>
  912. </tbody>
  913. </table>
  914. <dl class="details">
  915. <dt class="tag-overrides">Overrides:</dt>
  916. <dd class="tag-overrides"><ul class="dummy"><li>
  917. <a href="Sk.builtin.numtype.html#nb$divide">Sk.builtin.numtype#nb$divide</a>
  918. </li></ul></dd>
  919. <dt class="tag-source">Source:</dt>
  920. <dd class="tag-source"><ul class="dummy"><li>
  921. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line508">line 508</a>
  922. </li></ul></dd>
  923. </dl>
  924. <h5>Returns:</h5>
  925. <div class="param-desc">
  926. <p>The result of the division</p>
  927. </div>
  928. <dl>
  929. <dt>
  930. Type
  931. </dt>
  932. <dd>
  933. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  934. |
  935. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  936. </dd>
  937. </dl>
  938. <h4 class="name" id="nb$divmod"><span class="type-signature"></span>nb$divmod<span class="signature">(other<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {Sk.builtin.tuple|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  939. <div class="description">
  940. <p>Compute the quotient and the remainder of this instance and a given Python object and return the result.</p>
  941. <p>Returns NotImplemented if division or modulo operations between this type and other type are unsupported.</p>
  942. <p>Javscript function, returns Python object.</p>
  943. </div>
  944. <h5>Parameters:</h5>
  945. <table class="params">
  946. <thead>
  947. <tr>
  948. <th>Name</th>
  949. <th>Type</th>
  950. <th class="last">Description</th>
  951. </tr>
  952. </thead>
  953. <tbody>
  954. <tr>
  955. <td class="name"><code>other</code></td>
  956. <td class="type">
  957. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  958. </td>
  959. <td class="description last"><p>The divisor, which must be a Python object.</p></td>
  960. </tr>
  961. </tbody>
  962. </table>
  963. <dl class="details">
  964. <dt class="tag-overrides">Overrides:</dt>
  965. <dd class="tag-overrides"><ul class="dummy"><li>
  966. <a href="Sk.builtin.numtype.html#nb$divmod">Sk.builtin.numtype#nb$divmod</a>
  967. </li></ul></dd>
  968. <dt class="tag-source">Source:</dt>
  969. <dd class="tag-source"><ul class="dummy"><li>
  970. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line575">line 575</a>
  971. </li></ul></dd>
  972. </dl>
  973. <h5>Returns:</h5>
  974. <div class="param-desc">
  975. <p>The result of the operation.
  976. If both operations are supported, a Python tuple containing (quotient, remainder) in that order.</p>
  977. </div>
  978. <dl>
  979. <dt>
  980. Type
  981. </dt>
  982. <dd>
  983. <span class="param-type">Sk.builtin.tuple</span>
  984. |
  985. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  986. </dd>
  987. </dl>
  988. <h4 class="name" id="nb$floor_divide"><span class="type-signature"></span>nb$floor_divide<span class="signature">(other<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  989. <div class="description">
  990. <p>Floor divide this instance by a Python object and return the result (i.e. this // other).</p>
  991. <p>Returns NotImplemented if floor division between this type and other type is unsupported.</p>
  992. <p>Javscript function, returns Python object.</p>
  993. </div>
  994. <h5>Parameters:</h5>
  995. <table class="params">
  996. <thead>
  997. <tr>
  998. <th>Name</th>
  999. <th>Type</th>
  1000. <th class="last">Description</th>
  1001. </tr>
  1002. </thead>
  1003. <tbody>
  1004. <tr>
  1005. <td class="name"><code>other</code></td>
  1006. <td class="type">
  1007. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  1008. </td>
  1009. <td class="description last"><p>The divisor, which must be a Python object.</p></td>
  1010. </tr>
  1011. </tbody>
  1012. </table>
  1013. <dl class="details">
  1014. <dt class="tag-overrides">Overrides:</dt>
  1015. <dd class="tag-overrides"><ul class="dummy"><li>
  1016. <a href="Sk.builtin.numtype.html#nb$floor_divide">Sk.builtin.numtype#nb$floor_divide</a>
  1017. </li></ul></dd>
  1018. <dt class="tag-source">Source:</dt>
  1019. <dd class="tag-source"><ul class="dummy"><li>
  1020. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line530">line 530</a>
  1021. </li></ul></dd>
  1022. </dl>
  1023. <h5>Returns:</h5>
  1024. <div class="param-desc">
  1025. <p>The result of the floor division</p>
  1026. </div>
  1027. <dl>
  1028. <dt>
  1029. Type
  1030. </dt>
  1031. <dd>
  1032. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  1033. |
  1034. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1035. </dd>
  1036. </dl>
  1037. <h4 class="name" id="nb$isnegative"><span class="type-signature"></span>nb$isnegative<span class="signature">()</span><span class="type-signature"> &rarr; {boolean|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1038. <div class="description">
  1039. <p>Determine if this instance is negative.</p>
  1040. <p>Javscript function, returns Javascript object or Sk.builtin.NotImplemented.</p>
  1041. </div>
  1042. <dl class="details">
  1043. <dt class="tag-overrides">Overrides:</dt>
  1044. <dd class="tag-overrides"><ul class="dummy"><li>
  1045. <a href="Sk.builtin.numtype.html#nb$isnegative">Sk.builtin.numtype#nb$isnegative</a>
  1046. </li></ul></dd>
  1047. <dt class="tag-source">Source:</dt>
  1048. <dd class="tag-source"><ul class="dummy"><li>
  1049. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line659">line 659</a>
  1050. </li></ul></dd>
  1051. </dl>
  1052. <h5>Returns:</h5>
  1053. <div class="param-desc">
  1054. <p>true if this instance is negative, false otherwise</p>
  1055. </div>
  1056. <dl>
  1057. <dt>
  1058. Type
  1059. </dt>
  1060. <dd>
  1061. <span class="param-type">boolean</span>
  1062. |
  1063. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1064. </dd>
  1065. </dl>
  1066. <h4 class="name" id="nb$ispositive"><span class="type-signature"></span>nb$ispositive<span class="signature">()</span><span class="type-signature"> &rarr; {boolean|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1067. <div class="description">
  1068. <p>Determine if this instance is positive.</p>
  1069. <p>Javscript function, returns Javascript object or Sk.builtin.NotImplemented.</p>
  1070. </div>
  1071. <dl class="details">
  1072. <dt class="tag-overrides">Overrides:</dt>
  1073. <dd class="tag-overrides"><ul class="dummy"><li>
  1074. <a href="Sk.builtin.numtype.html#nb$ispositive">Sk.builtin.numtype#nb$ispositive</a>
  1075. </li></ul></dd>
  1076. <dt class="tag-source">Source:</dt>
  1077. <dd class="tag-source"><ul class="dummy"><li>
  1078. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line670">line 670</a>
  1079. </li></ul></dd>
  1080. </dl>
  1081. <h5>Returns:</h5>
  1082. <div class="param-desc">
  1083. <p>true if this instance is positive, false otherwise</p>
  1084. </div>
  1085. <dl>
  1086. <dt>
  1087. Type
  1088. </dt>
  1089. <dd>
  1090. <span class="param-type">boolean</span>
  1091. |
  1092. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1093. </dd>
  1094. </dl>
  1095. <h4 class="name" id="nb$multiply"><span class="type-signature"></span>nb$multiply<span class="signature">(other<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1096. <div class="description">
  1097. <p>Multiply this instance by a Python object and return the result (i.e. this * other).</p>
  1098. <p>Returns NotImplemented if multiplication between this type and other type is unsupported.</p>
  1099. <p>Javscript function, returns Python object.</p>
  1100. </div>
  1101. <h5>Parameters:</h5>
  1102. <table class="params">
  1103. <thead>
  1104. <tr>
  1105. <th>Name</th>
  1106. <th>Type</th>
  1107. <th class="last">Description</th>
  1108. </tr>
  1109. </thead>
  1110. <tbody>
  1111. <tr>
  1112. <td class="name"><code>other</code></td>
  1113. <td class="type">
  1114. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  1115. </td>
  1116. <td class="description last"><p>The multiplier, which must be a Python object.</p></td>
  1117. </tr>
  1118. </tbody>
  1119. </table>
  1120. <dl class="details">
  1121. <dt class="tag-overrides">Overrides:</dt>
  1122. <dd class="tag-overrides"><ul class="dummy"><li>
  1123. <a href="Sk.builtin.numtype.html#nb$multiply">Sk.builtin.numtype#nb$multiply</a>
  1124. </li></ul></dd>
  1125. <dt class="tag-source">Source:</dt>
  1126. <dd class="tag-source"><ul class="dummy"><li>
  1127. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line485">line 485</a>
  1128. </li></ul></dd>
  1129. </dl>
  1130. <h5>Returns:</h5>
  1131. <div class="param-desc">
  1132. <p>The result of the multiplication</p>
  1133. </div>
  1134. <dl>
  1135. <dt>
  1136. Type
  1137. </dt>
  1138. <dd>
  1139. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  1140. |
  1141. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1142. </dd>
  1143. </dl>
  1144. <h4 class="name" id="nb$negative"><span class="type-signature"></span>nb$negative<span class="signature">()</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1145. <div class="description">
  1146. <p>Compute the unary negative of this instance (i.e. -this).</p>
  1147. <p>Javscript function, returns Python object.</p>
  1148. </div>
  1149. <dl class="details">
  1150. <dt class="tag-overrides">Overrides:</dt>
  1151. <dd class="tag-overrides"><ul class="dummy"><li>
  1152. <a href="Sk.builtin.numtype.html#nb$negative">Sk.builtin.numtype#nb$negative</a>
  1153. </li></ul></dd>
  1154. <dt class="tag-source">Source:</dt>
  1155. <dd class="tag-source"><ul class="dummy"><li>
  1156. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line626">line 626</a>
  1157. </li></ul></dd>
  1158. </dl>
  1159. <h5>Returns:</h5>
  1160. <div class="param-desc">
  1161. <p>A copy of this instance with the value negated</p>
  1162. </div>
  1163. <dl>
  1164. <dt>
  1165. Type
  1166. </dt>
  1167. <dd>
  1168. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  1169. |
  1170. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1171. </dd>
  1172. </dl>
  1173. <h4 class="name" id="nb$nonzero"><span class="type-signature"></span>nb$nonzero<span class="signature">()</span><span class="type-signature"> &rarr; {boolean|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1174. <div class="description">
  1175. <p>Determine if this instance is nonzero.</p>
  1176. <p>Javscript function, returns Javascript object or Sk.builtin.NotImplemented.</p>
  1177. </div>
  1178. <dl class="details">
  1179. <dt class="tag-overrides">Overrides:</dt>
  1180. <dd class="tag-overrides"><ul class="dummy"><li>
  1181. <a href="Sk.builtin.numtype.html#nb$nonzero">Sk.builtin.numtype#nb$nonzero</a>
  1182. </li></ul></dd>
  1183. <dt class="tag-source">Source:</dt>
  1184. <dd class="tag-source"><ul class="dummy"><li>
  1185. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line648">line 648</a>
  1186. </li></ul></dd>
  1187. </dl>
  1188. <h5>Returns:</h5>
  1189. <div class="param-desc">
  1190. <p>true if this instance is not equal to zero, false otherwise</p>
  1191. </div>
  1192. <dl>
  1193. <dt>
  1194. Type
  1195. </dt>
  1196. <dd>
  1197. <span class="param-type">boolean</span>
  1198. |
  1199. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1200. </dd>
  1201. </dl>
  1202. <h4 class="name" id="nb$positive"><span class="type-signature"></span>nb$positive<span class="signature">()</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1203. <div class="description">
  1204. <p>Compute the unary positive of this instance (i.e. +this).</p>
  1205. <p>Javscript function, returns Python object.</p>
  1206. </div>
  1207. <dl class="details">
  1208. <dt class="tag-overrides">Overrides:</dt>
  1209. <dd class="tag-overrides"><ul class="dummy"><li>
  1210. <a href="Sk.builtin.numtype.html#nb$positive">Sk.builtin.numtype#nb$positive</a>
  1211. </li></ul></dd>
  1212. <dt class="tag-source">Source:</dt>
  1213. <dd class="tag-source"><ul class="dummy"><li>
  1214. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line637">line 637</a>
  1215. </li></ul></dd>
  1216. </dl>
  1217. <h5>Returns:</h5>
  1218. <div class="param-desc">
  1219. <p>A copy of this instance with the value unchanged</p>
  1220. </div>
  1221. <dl>
  1222. <dt>
  1223. Type
  1224. </dt>
  1225. <dd>
  1226. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  1227. |
  1228. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1229. </dd>
  1230. </dl>
  1231. <h4 class="name" id="nb$power"><span class="type-signature"></span>nb$power<span class="signature">(other<span class="signature-attributes">non-null</span>, mod<span class="signature-attributes">opt, non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1232. <div class="description">
  1233. <p>Raise this instance by a Python object, optionally modulo the exponent, and return the final result.</p>
  1234. <p>If mod is undefined, return this ** other. Else, return (this ** other) % mod.</p>
  1235. <p>Returns NotImplemented if exponentiation or modulation between this type and other type is unsupported.</p>
  1236. <p>Javscript function, returns Python object.</p>
  1237. </div>
  1238. <h5>Parameters:</h5>
  1239. <table class="params">
  1240. <thead>
  1241. <tr>
  1242. <th>Name</th>
  1243. <th>Type</th>
  1244. <th>Attributes</th>
  1245. <th class="last">Description</th>
  1246. </tr>
  1247. </thead>
  1248. <tbody>
  1249. <tr>
  1250. <td class="name"><code>other</code></td>
  1251. <td class="type">
  1252. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  1253. </td>
  1254. <td class="attributes">
  1255. </td>
  1256. <td class="description last"><p>The exponent, which must be a Python object.</p></td>
  1257. </tr>
  1258. <tr>
  1259. <td class="name"><code>mod</code></td>
  1260. <td class="type">
  1261. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  1262. </td>
  1263. <td class="attributes">
  1264. &lt;optional><br>
  1265. </td>
  1266. <td class="description last"><p>The optional divisor, which must be a Python object if defined.</p></td>
  1267. </tr>
  1268. </tbody>
  1269. </table>
  1270. <dl class="details">
  1271. <dt class="tag-overrides">Overrides:</dt>
  1272. <dd class="tag-overrides"><ul class="dummy"><li>
  1273. <a href="Sk.builtin.numtype.html#nb$power">Sk.builtin.numtype#nb$power</a>
  1274. </li></ul></dd>
  1275. <dt class="tag-source">Source:</dt>
  1276. <dd class="tag-source"><ul class="dummy"><li>
  1277. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line596">line 596</a>
  1278. </li></ul></dd>
  1279. </dl>
  1280. <h5>Returns:</h5>
  1281. <div class="param-desc">
  1282. <p>The result of the exponentiation.</p>
  1283. </div>
  1284. <dl>
  1285. <dt>
  1286. Type
  1287. </dt>
  1288. <dd>
  1289. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  1290. |
  1291. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1292. </dd>
  1293. </dl>
  1294. <h4 class="name" id="nb$reflected_add"><span class="type-signature"></span>nb$reflected_add<span class="signature">()</span><span class="type-signature"></span></h4>
  1295. <dl class="details">
  1296. <dt class="tag-source">Source:</dt>
  1297. <dd class="tag-source"><ul class="dummy"><li>
  1298. <a href="float.js.html">float.js</a>, <a href="float.js.html#line231">line 231</a>
  1299. </li></ul></dd>
  1300. </dl>
  1301. <h4 class="name" id="nb$reflected_divide"><span class="type-signature"></span>nb$reflected_divide<span class="signature">()</span><span class="type-signature"></span></h4>
  1302. <dl class="details">
  1303. <dt class="tag-source">Source:</dt>
  1304. <dd class="tag-source"><ul class="dummy"><li>
  1305. <a href="float.js.html">float.js</a>, <a href="float.js.html#line331">line 331</a>
  1306. </li></ul></dd>
  1307. </dl>
  1308. <h4 class="name" id="nb$reflected_divmod"><span class="type-signature"></span>nb$reflected_divmod<span class="signature">()</span><span class="type-signature"></span></h4>
  1309. <dl class="details">
  1310. <dt class="tag-source">Source:</dt>
  1311. <dd class="tag-source"><ul class="dummy"><li>
  1312. <a href="float.js.html">float.js</a>, <a href="float.js.html#line519">line 519</a>
  1313. </li></ul></dd>
  1314. </dl>
  1315. <h4 class="name" id="nb$reflected_floor_divide"><span class="type-signature"></span>nb$reflected_floor_divide<span class="signature">()</span><span class="type-signature"></span></h4>
  1316. <dl class="details">
  1317. <dt class="tag-source">Source:</dt>
  1318. <dd class="tag-source"><ul class="dummy"><li>
  1319. <a href="float.js.html">float.js</a>, <a href="float.js.html#line391">line 391</a>
  1320. </li></ul></dd>
  1321. </dl>
  1322. <h4 class="name" id="nb$reflected_multiply"><span class="type-signature"></span>nb$reflected_multiply<span class="signature">()</span><span class="type-signature"></span></h4>
  1323. <dl class="details">
  1324. <dt class="tag-source">Source:</dt>
  1325. <dd class="tag-source"><ul class="dummy"><li>
  1326. <a href="float.js.html">float.js</a>, <a href="float.js.html#line268">line 268</a>
  1327. </li></ul></dd>
  1328. </dl>
  1329. <h4 class="name" id="nb$reflected_power"><span class="type-signature"></span>nb$reflected_power<span class="signature">()</span><span class="type-signature"></span></h4>
  1330. <dl class="details">
  1331. <dt class="tag-source">Source:</dt>
  1332. <dd class="tag-source"><ul class="dummy"><li>
  1333. <a href="float.js.html">float.js</a>, <a href="float.js.html#line570">line 570</a>
  1334. </li></ul></dd>
  1335. </dl>
  1336. <h4 class="name" id="nb$reflected_remainder"><span class="type-signature"></span>nb$reflected_remainder<span class="signature">()</span><span class="type-signature"></span></h4>
  1337. <dl class="details">
  1338. <dt class="tag-source">Source:</dt>
  1339. <dd class="tag-source"><ul class="dummy"><li>
  1340. <a href="float.js.html">float.js</a>, <a href="float.js.html#line488">line 488</a>
  1341. </li></ul></dd>
  1342. </dl>
  1343. <h4 class="name" id="nb$reflected_subtract"><span class="type-signature"></span>nb$reflected_subtract<span class="signature">()</span><span class="type-signature"></span></h4>
  1344. <dl class="details">
  1345. <dt class="tag-source">Source:</dt>
  1346. <dd class="tag-source"><ul class="dummy"><li>
  1347. <a href="float.js.html">float.js</a>, <a href="float.js.html#line249">line 249</a>
  1348. </li></ul></dd>
  1349. </dl>
  1350. <h4 class="name" id="nb$remainder"><span class="type-signature"></span>nb$remainder<span class="signature">(other<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1351. <div class="description">
  1352. <p>Modulo this instance by a Python object and return the result (i.e. this % other).</p>
  1353. <p>Returns NotImplemented if modulation between this type and other type is unsupported.</p>
  1354. <p>Javscript function, returns Python object.</p>
  1355. </div>
  1356. <h5>Parameters:</h5>
  1357. <table class="params">
  1358. <thead>
  1359. <tr>
  1360. <th>Name</th>
  1361. <th>Type</th>
  1362. <th class="last">Description</th>
  1363. </tr>
  1364. </thead>
  1365. <tbody>
  1366. <tr>
  1367. <td class="name"><code>other</code></td>
  1368. <td class="type">
  1369. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  1370. </td>
  1371. <td class="description last"><p>The divisor, which must be a Python object.</p></td>
  1372. </tr>
  1373. </tbody>
  1374. </table>
  1375. <dl class="details">
  1376. <dt class="tag-overrides">Overrides:</dt>
  1377. <dd class="tag-overrides"><ul class="dummy"><li>
  1378. <a href="Sk.builtin.numtype.html#nb$remainder">Sk.builtin.numtype#nb$remainder</a>
  1379. </li></ul></dd>
  1380. <dt class="tag-source">Source:</dt>
  1381. <dd class="tag-source"><ul class="dummy"><li>
  1382. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line552">line 552</a>
  1383. </li></ul></dd>
  1384. </dl>
  1385. <h5>Returns:</h5>
  1386. <div class="param-desc">
  1387. <p>The result of the modulation</p>
  1388. </div>
  1389. <dl>
  1390. <dt>
  1391. Type
  1392. </dt>
  1393. <dd>
  1394. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  1395. |
  1396. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1397. </dd>
  1398. </dl>
  1399. <h4 class="name" id="nb$subtract"><span class="type-signature"></span>nb$subtract<span class="signature">(other<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1400. <div class="description">
  1401. <p>Subtract a Python object from this instance and return the result (i.e. this - other).</p>
  1402. <p>Returns NotImplemented if subtraction between this type and other type is unsupported.</p>
  1403. <p>Javscript function, returns Python object.</p>
  1404. </div>
  1405. <h5>Parameters:</h5>
  1406. <table class="params">
  1407. <thead>
  1408. <tr>
  1409. <th>Name</th>
  1410. <th>Type</th>
  1411. <th class="last">Description</th>
  1412. </tr>
  1413. </thead>
  1414. <tbody>
  1415. <tr>
  1416. <td class="name"><code>other</code></td>
  1417. <td class="type">
  1418. <span class="param-type"><a href="Sk.builtin.object.html">Sk.builtin.object</a></span>
  1419. </td>
  1420. <td class="description last"><p>The Python object to subtract.</p></td>
  1421. </tr>
  1422. </tbody>
  1423. </table>
  1424. <dl class="details">
  1425. <dt class="tag-overrides">Overrides:</dt>
  1426. <dd class="tag-overrides"><ul class="dummy"><li>
  1427. <a href="Sk.builtin.numtype.html#nb$subtract">Sk.builtin.numtype#nb$subtract</a>
  1428. </li></ul></dd>
  1429. <dt class="tag-source">Source:</dt>
  1430. <dd class="tag-source"><ul class="dummy"><li>
  1431. <a href="numtype.js.html">numtype.js</a>, <a href="numtype.js.html#line463">line 463</a>
  1432. </li></ul></dd>
  1433. </dl>
  1434. <h5>Returns:</h5>
  1435. <div class="param-desc">
  1436. <p>The result of the subtraction.</p>
  1437. </div>
  1438. <dl>
  1439. <dt>
  1440. Type
  1441. </dt>
  1442. <dd>
  1443. <span class="param-type"><a href="Sk.builtin.numtype.html">Sk.builtin.numtype</a></span>
  1444. |
  1445. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1446. </dd>
  1447. </dl>
  1448. <h4 class="name" id="numberCompare"><span class="type-signature"></span>numberCompare<span class="signature">()</span><span class="type-signature"> &rarr; {number|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1449. <div class="description">
  1450. <p>Compare this instance's value to another Python object's value.</p>
  1451. <p>Returns NotImplemented if comparison between float and other type is unsupported.</p>
  1452. <p>Javscript function, returns Javascript object or Sk.builtin.NotImplemented.</p>
  1453. </div>
  1454. <dl class="details">
  1455. <dt class="tag-source">Source:</dt>
  1456. <dd class="tag-source"><ul class="dummy"><li>
  1457. <a href="float.js.html">float.js</a>, <a href="float.js.html#line647">line 647</a>
  1458. </li></ul></dd>
  1459. </dl>
  1460. <h5>Returns:</h5>
  1461. <div class="param-desc">
  1462. <p>negative if this &lt; other, zero if this == other, positive if this &gt; other</p>
  1463. </div>
  1464. <dl>
  1465. <dt>
  1466. Type
  1467. </dt>
  1468. <dd>
  1469. <span class="param-type">number</span>
  1470. |
  1471. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1472. </dd>
  1473. </dl>
  1474. <h4 class="name" id="ob$eq"><span class="type-signature"></span>ob$eq<span class="signature">(other)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.bool.html">Sk.builtin.bool</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1475. <div class="description">
  1476. <p>Perform equality check between this instance and a Python object (i.e. this == other).</p>
  1477. <p>Implements <code>__eq__</code> dunder method.</p>
  1478. <p>Javascript function, returns Python object.</p>
  1479. </div>
  1480. <h5>Parameters:</h5>
  1481. <table class="params">
  1482. <thead>
  1483. <tr>
  1484. <th>Name</th>
  1485. <th>Type</th>
  1486. <th class="last">Description</th>
  1487. </tr>
  1488. </thead>
  1489. <tbody>
  1490. <tr>
  1491. <td class="name"><code>other</code></td>
  1492. <td class="type">
  1493. <span class="param-type">Object</span>
  1494. </td>
  1495. <td class="description last"><p>The Python object to check for equality.</p></td>
  1496. </tr>
  1497. </tbody>
  1498. </table>
  1499. <dl class="details">
  1500. <dt class="tag-overrides">Overrides:</dt>
  1501. <dd class="tag-overrides"><ul class="dummy"><li>
  1502. <a href="Sk.builtin.numtype.html#ob$eq">Sk.builtin.numtype#ob$eq</a>
  1503. </li></ul></dd>
  1504. <dt class="tag-source">Source:</dt>
  1505. <dd class="tag-source"><ul class="dummy"><li>
  1506. <a href="object.js.html">object.js</a>, <a href="object.js.html#line293">line 293</a>
  1507. </li></ul></dd>
  1508. </dl>
  1509. <h5>Returns:</h5>
  1510. <div class="param-desc">
  1511. <p>true if equal, false otherwise</p>
  1512. </div>
  1513. <dl>
  1514. <dt>
  1515. Type
  1516. </dt>
  1517. <dd>
  1518. <span class="param-type"><a href="Sk.builtin.bool.html">Sk.builtin.bool</a></span>
  1519. |
  1520. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1521. </dd>
  1522. </dl>
  1523. <h4 class="name" id="ob$ge"><span class="type-signature"></span>ob$ge<span class="signature">(other)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.bool.html">Sk.builtin.bool</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1524. <div class="description">
  1525. <p>Determine if this instance is greater than or equal to a Python object (i.e. this &gt;= other).</p>
  1526. <p>Implements <code>__ge__</code> dunder method.</p>
  1527. <p>Javascript function, returns Python object.</p>
  1528. </div>
  1529. <h5>Parameters:</h5>
  1530. <table class="params">
  1531. <thead>
  1532. <tr>
  1533. <th>Name</th>
  1534. <th>Type</th>
  1535. <th class="last">Description</th>
  1536. </tr>
  1537. </thead>
  1538. <tbody>
  1539. <tr>
  1540. <td class="name"><code>other</code></td>
  1541. <td class="type">
  1542. <span class="param-type">Object</span>
  1543. </td>
  1544. <td class="description last"><p>The Python object to compare.</p></td>
  1545. </tr>
  1546. </tbody>
  1547. </table>
  1548. <dl class="details">
  1549. <dt class="tag-overrides">Overrides:</dt>
  1550. <dd class="tag-overrides"><ul class="dummy"><li>
  1551. <a href="Sk.builtin.numtype.html#ob$ge">Sk.builtin.numtype#ob$ge</a>
  1552. </li></ul></dd>
  1553. <dt class="tag-source">Source:</dt>
  1554. <dd class="tag-source"><ul class="dummy"><li>
  1555. <a href="object.js.html">object.js</a>, <a href="object.js.html#line371">line 371</a>
  1556. </li></ul></dd>
  1557. </dl>
  1558. <h5>Returns:</h5>
  1559. <div class="param-desc">
  1560. <p>true if this &gt;= other, false otherwise</p>
  1561. </div>
  1562. <dl>
  1563. <dt>
  1564. Type
  1565. </dt>
  1566. <dd>
  1567. <span class="param-type"><a href="Sk.builtin.bool.html">Sk.builtin.bool</a></span>
  1568. |
  1569. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1570. </dd>
  1571. </dl>
  1572. <h4 class="name" id="ob$gt"><span class="type-signature"></span>ob$gt<span class="signature">(other)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.bool.html">Sk.builtin.bool</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1573. <div class="description">
  1574. <p>Determine if this instance is greater than a Python object (i.e. this &gt; other).</p>
  1575. <p>Implements <code>__gt__</code> dunder method.</p>
  1576. <p>Javascript function, returns Python object.</p>
  1577. </div>
  1578. <h5>Parameters:</h5>
  1579. <table class="params">
  1580. <thead>
  1581. <tr>
  1582. <th>Name</th>
  1583. <th>Type</th>
  1584. <th class="last">Description</th>
  1585. </tr>
  1586. </thead>
  1587. <tbody>
  1588. <tr>
  1589. <td class="name"><code>other</code></td>
  1590. <td class="type">
  1591. <span class="param-type">Object</span>
  1592. </td>
  1593. <td class="description last"><p>The Python object to compare.</p></td>
  1594. </tr>
  1595. </tbody>
  1596. </table>
  1597. <dl class="details">
  1598. <dt class="tag-overrides">Overrides:</dt>
  1599. <dd class="tag-overrides"><ul class="dummy"><li>
  1600. <a href="Sk.builtin.numtype.html#ob$gt">Sk.builtin.numtype#ob$gt</a>
  1601. </li></ul></dd>
  1602. <dt class="tag-source">Source:</dt>
  1603. <dd class="tag-source"><ul class="dummy"><li>
  1604. <a href="object.js.html">object.js</a>, <a href="object.js.html#line357">line 357</a>
  1605. </li></ul></dd>
  1606. </dl>
  1607. <h5>Returns:</h5>
  1608. <div class="param-desc">
  1609. <p>true if this &gt; other, false otherwise</p>
  1610. </div>
  1611. <dl>
  1612. <dt>
  1613. Type
  1614. </dt>
  1615. <dd>
  1616. <span class="param-type"><a href="Sk.builtin.bool.html">Sk.builtin.bool</a></span>
  1617. |
  1618. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1619. </dd>
  1620. </dl>
  1621. <h4 class="name" id="ob$le"><span class="type-signature"></span>ob$le<span class="signature">(other)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.bool.html">Sk.builtin.bool</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1622. <div class="description">
  1623. <p>Determine if this instance is less than or equal to a Python object (i.e. this &lt;= other).</p>
  1624. <p>Implements <code>__le__</code> dunder method.</p>
  1625. <p>Javascript function, returns Python object.</p>
  1626. </div>
  1627. <h5>Parameters:</h5>
  1628. <table class="params">
  1629. <thead>
  1630. <tr>
  1631. <th>Name</th>
  1632. <th>Type</th>
  1633. <th class="last">Description</th>
  1634. </tr>
  1635. </thead>
  1636. <tbody>
  1637. <tr>
  1638. <td class="name"><code>other</code></td>
  1639. <td class="type">
  1640. <span class="param-type">Object</span>
  1641. </td>
  1642. <td class="description last"><p>The Python object to compare.</p></td>
  1643. </tr>
  1644. </tbody>
  1645. </table>
  1646. <dl class="details">
  1647. <dt class="tag-overrides">Overrides:</dt>
  1648. <dd class="tag-overrides"><ul class="dummy"><li>
  1649. <a href="Sk.builtin.numtype.html#ob$le">Sk.builtin.numtype#ob$le</a>
  1650. </li></ul></dd>
  1651. <dt class="tag-source">Source:</dt>
  1652. <dd class="tag-source"><ul class="dummy"><li>
  1653. <a href="object.js.html">object.js</a>, <a href="object.js.html#line343">line 343</a>
  1654. </li></ul></dd>
  1655. </dl>
  1656. <h5>Returns:</h5>
  1657. <div class="param-desc">
  1658. <p>true if this &lt;= other, false otherwise</p>
  1659. </div>
  1660. <dl>
  1661. <dt>
  1662. Type
  1663. </dt>
  1664. <dd>
  1665. <span class="param-type"><a href="Sk.builtin.bool.html">Sk.builtin.bool</a></span>
  1666. |
  1667. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1668. </dd>
  1669. </dl>
  1670. <h4 class="name" id="ob$lt"><span class="type-signature"></span>ob$lt<span class="signature">(other)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.bool.html">Sk.builtin.bool</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1671. <div class="description">
  1672. <p>Determine if this instance is less than a Python object (i.e. this &lt; other).</p>
  1673. <p>Implements <code>__lt__</code> dunder method.</p>
  1674. <p>Javascript function, returns Python object.</p>
  1675. </div>
  1676. <h5>Parameters:</h5>
  1677. <table class="params">
  1678. <thead>
  1679. <tr>
  1680. <th>Name</th>
  1681. <th>Type</th>
  1682. <th class="last">Description</th>
  1683. </tr>
  1684. </thead>
  1685. <tbody>
  1686. <tr>
  1687. <td class="name"><code>other</code></td>
  1688. <td class="type">
  1689. <span class="param-type">Object</span>
  1690. </td>
  1691. <td class="description last"><p>The Python object to compare.</p></td>
  1692. </tr>
  1693. </tbody>
  1694. </table>
  1695. <dl class="details">
  1696. <dt class="tag-overrides">Overrides:</dt>
  1697. <dd class="tag-overrides"><ul class="dummy"><li>
  1698. <a href="Sk.builtin.numtype.html#ob$lt">Sk.builtin.numtype#ob$lt</a>
  1699. </li></ul></dd>
  1700. <dt class="tag-source">Source:</dt>
  1701. <dd class="tag-source"><ul class="dummy"><li>
  1702. <a href="object.js.html">object.js</a>, <a href="object.js.html#line329">line 329</a>
  1703. </li></ul></dd>
  1704. </dl>
  1705. <h5>Returns:</h5>
  1706. <div class="param-desc">
  1707. <p>true if this &lt; other, false otherwise</p>
  1708. </div>
  1709. <dl>
  1710. <dt>
  1711. Type
  1712. </dt>
  1713. <dd>
  1714. <span class="param-type"><a href="Sk.builtin.bool.html">Sk.builtin.bool</a></span>
  1715. |
  1716. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1717. </dd>
  1718. </dl>
  1719. <h4 class="name" id="ob$ne"><span class="type-signature"></span>ob$ne<span class="signature">(other)</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.bool.html">Sk.builtin.bool</a>|<a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a>}</span></h4>
  1720. <div class="description">
  1721. <p>Perform non-equality check between this instance and a Python object (i.e. this != other).</p>
  1722. <p>Implements <code>__ne__</code> dunder method.</p>
  1723. <p>Javascript function, returns Python object.</p>
  1724. </div>
  1725. <h5>Parameters:</h5>
  1726. <table class="params">
  1727. <thead>
  1728. <tr>
  1729. <th>Name</th>
  1730. <th>Type</th>
  1731. <th class="last">Description</th>
  1732. </tr>
  1733. </thead>
  1734. <tbody>
  1735. <tr>
  1736. <td class="name"><code>other</code></td>
  1737. <td class="type">
  1738. <span class="param-type">Object</span>
  1739. </td>
  1740. <td class="description last"><p>The Python object to check for non-equality.</p></td>
  1741. </tr>
  1742. </tbody>
  1743. </table>
  1744. <dl class="details">
  1745. <dt class="tag-overrides">Overrides:</dt>
  1746. <dd class="tag-overrides"><ul class="dummy"><li>
  1747. <a href="Sk.builtin.numtype.html#ob$ne">Sk.builtin.numtype#ob$ne</a>
  1748. </li></ul></dd>
  1749. <dt class="tag-source">Source:</dt>
  1750. <dd class="tag-source"><ul class="dummy"><li>
  1751. <a href="object.js.html">object.js</a>, <a href="object.js.html#line311">line 311</a>
  1752. </li></ul></dd>
  1753. </dl>
  1754. <h5>Returns:</h5>
  1755. <div class="param-desc">
  1756. <p>true if not equal, false otherwise</p>
  1757. </div>
  1758. <dl>
  1759. <dt>
  1760. Type
  1761. </dt>
  1762. <dd>
  1763. <span class="param-type"><a href="Sk.builtin.bool.html">Sk.builtin.bool</a></span>
  1764. |
  1765. <span class="param-type"><a href="Sk.builtin.NotImplemented.html">Sk.builtin.NotImplemented</a></span>
  1766. </dd>
  1767. </dl>
  1768. <h4 class="name" id="str$"><span class="type-signature"></span>str$<span class="signature">(base, sign)</span><span class="type-signature"> &rarr; {string}</span></h4>
  1769. <div class="description">
  1770. <p>Convert this instance's value to a Javascript string.</p>
  1771. <p>Javascript function, returns Javascript object.</p>
  1772. </div>
  1773. <h5>Parameters:</h5>
  1774. <table class="params">
  1775. <thead>
  1776. <tr>
  1777. <th>Name</th>
  1778. <th>Type</th>
  1779. <th class="last">Description</th>
  1780. </tr>
  1781. </thead>
  1782. <tbody>
  1783. <tr>
  1784. <td class="name"><code>base</code></td>
  1785. <td class="type">
  1786. <span class="param-type">number</span>
  1787. </td>
  1788. <td class="description last"><p>The base of the value.</p></td>
  1789. </tr>
  1790. <tr>
  1791. <td class="name"><code>sign</code></td>
  1792. <td class="type">
  1793. <span class="param-type">boolean</span>
  1794. </td>
  1795. <td class="description last"><p>true if the value should be signed, false otherwise.</p></td>
  1796. </tr>
  1797. </tbody>
  1798. </table>
  1799. <dl class="details">
  1800. <dt class="tag-source">Source:</dt>
  1801. <dd class="tag-source"><ul class="dummy"><li>
  1802. <a href="float.js.html">float.js</a>, <a href="float.js.html#line811">line 811</a>
  1803. </li></ul></dd>
  1804. </dl>
  1805. <h5>Returns:</h5>
  1806. <div class="param-desc">
  1807. <p>The Javascript string representation of this instance.</p>
  1808. </div>
  1809. <dl>
  1810. <dt>
  1811. Type
  1812. </dt>
  1813. <dd>
  1814. <span class="param-type">string</span>
  1815. </dd>
  1816. </dl>
  1817. <h4 class="name" id="toFixed"><span class="type-signature"></span>toFixed<span class="signature">(x)</span><span class="type-signature"> &rarr; {string}</span></h4>
  1818. <div class="description">
  1819. <p>Returns this instance's value as a string formatted using fixed-point notation.</p>
  1820. <p>Javascript function, returns Javascript object.</p>
  1821. </div>
  1822. <h5>Parameters:</h5>
  1823. <table class="params">
  1824. <thead>
  1825. <tr>
  1826. <th>Name</th>
  1827. <th>Type</th>
  1828. <th class="last">Description</th>
  1829. </tr>
  1830. </thead>
  1831. <tbody>
  1832. <tr>
  1833. <td class="name"><code>x</code></td>
  1834. <td class="type">
  1835. <span class="param-type">Object</span>
  1836. |
  1837. <span class="param-type">number</span>
  1838. </td>
  1839. <td class="description last"><p>The numer of digits to appear after the decimal point.</p></td>
  1840. </tr>
  1841. </tbody>
  1842. </table>
  1843. <dl class="details">
  1844. <dt class="tag-source">Source:</dt>
  1845. <dd class="tag-source"><ul class="dummy"><li>
  1846. <a href="float.js.html">float.js</a>, <a href="float.js.html#line214">line 214</a>
  1847. </li></ul></dd>
  1848. </dl>
  1849. <h5>Returns:</h5>
  1850. <div class="param-desc">
  1851. <p>The string representation of this instance's value.</p>
  1852. </div>
  1853. <dl>
  1854. <dt>
  1855. Type
  1856. </dt>
  1857. <dd>
  1858. <span class="param-type">string</span>
  1859. </dd>
  1860. </dl>
  1861. <h4 class="name" id="tp$hash"><span class="type-signature"></span>tp$hash<span class="signature">()</span><span class="type-signature"> &rarr; {<a href="Sk.builtin.int_.html">Sk.builtin.int_</a>}</span></h4>
  1862. <div class="description">
  1863. <p>Return the hash value of this instance.</p>
  1864. <p>Javascript function, returns Python object.</p>
  1865. </div>
  1866. <dl class="details">
  1867. <dt class="tag-overrides">Overrides:</dt>
  1868. <dd class="tag-overrides"><ul class="dummy"><li>
  1869. <a href="Sk.builtin.numtype.html#tp$hash">Sk.builtin.numtype#tp$hash</a>
  1870. </li></ul></dd>
  1871. <dt class="tag-source">Source:</dt>
  1872. <dd class="tag-source"><ul class="dummy"><li>
  1873. <a href="object.js.html">object.js</a>, <a href="object.js.html#line275">line 275</a>
  1874. </li></ul></dd>
  1875. </dl>
  1876. <h5>Returns:</h5>
  1877. <div class="param-desc">
  1878. <p>The hash value</p>
  1879. </div>
  1880. <dl>
  1881. <dt>
  1882. Type
  1883. </dt>
  1884. <dd>
  1885. <span class="param-type"><a href="Sk.builtin.int_.html">Sk.builtin.int_</a></span>
  1886. </dd>
  1887. </dl>
  1888. <h4 class="name" id="tp$index"><span class="type-signature"></span>tp$index<span class="signature">()</span><span class="type-signature"> &rarr; {number}</span></h4>
  1889. <div class="description">
  1890. <p>Return this instance's Javascript value.</p>
  1891. <p>Javascript function, returns Javascript object.</p>
  1892. </div>
  1893. <dl class="details">
  1894. <dt class="tag-source">Source:</dt>
  1895. <dd class="tag-source"><ul class="dummy"><li>
  1896. <a href="float.js.html">float.js</a>, <a href="float.js.html#line183">line 183</a>
  1897. </li></ul></dd>
  1898. </dl>
  1899. <h5>Returns:</h5>
  1900. <div class="param-desc">
  1901. <p>This instance's value.</p>
  1902. </div>
  1903. <dl>
  1904. <dt>
  1905. Type
  1906. </dt>
  1907. <dd>
  1908. <span class="param-type">number</span>
  1909. </dd>
  1910. </dl>
  1911. <h4 class="name" id="tp$str"><span class="type-signature"></span>tp$str<span class="signature">()</span><span class="type-signature"> &rarr; {Sk.builtin.str}</span></h4>
  1912. <div class="description">
  1913. <p>Return the string representation of this instance.</p>
  1914. <p>Javascript function, returns Python object.</p>
  1915. </div>
  1916. <dl class="details">
  1917. <dt class="tag-source">Source:</dt>
  1918. <dd class="tag-source"><ul class="dummy"><li>
  1919. <a href="float.js.html">float.js</a>, <a href="float.js.html#line798">line 798</a>
  1920. </li></ul></dd>
  1921. </dl>
  1922. <h5>Returns:</h5>
  1923. <div class="param-desc">
  1924. <p>The Python string representation of this instance.</p>
  1925. </div>
  1926. <dl>
  1927. <dt>
  1928. Type
  1929. </dt>
  1930. <dd>
  1931. <span class="param-type">Sk.builtin.str</span>
  1932. </dd>
  1933. </dl>
  1934. </article>
  1935. </section>
  1936. </div>
  1937. <nav>
  1938. <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Sk.abstr.iter-seqIter.html">seqIter</a></li><li><a href="Sk.builtin.bool.html">bool</a></li><li><a href="Sk.builtin.float_.html">float_</a></li><li><a href="Sk.builtin.func.html">func</a></li><li><a href="Sk.builtin.int_.html">int_</a></li><li><a href="Sk.builtin.none.html">none</a></li><li><a href="Sk.builtin.NotImplemented.html">NotImplemented</a></li><li><a href="Sk.builtin.numtype.html">numtype</a></li><li><a href="Sk.builtin.object.html">object</a></li><li><a href="Sk.builtin.seqtype.html">seqtype</a></li><li><a href="Sk.misceval.Suspension.html">Suspension</a></li></ul><h3>Namespaces</h3><ul><li><a href="Sk.html">Sk</a></li><li><a href="Sk.abstr.html">abstr</a></li><li><a href="Sk.builtin.html">builtin</a></li><li><a href="Sk.ffi.html">ffi</a></li><li><a href="Sk.misceval.html">misceval</a></li></ul>
  1939. </nav>
  1940. <br class="clear">
  1941. <footer>
  1942. Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0</a> on Thu Aug 13 2015 08:14:27 GMT-0500 (CDT)
  1943. </footer>
  1944. <script> prettyPrint(); </script>
  1945. <script src="scripts/linenumber.js"> </script>
  1946. </body>
  1947. </html>