[{"data":1,"prerenderedAt":278},["ShallowReactive",2],{"/dict/symbols":3,"/dict/symbols-surround":267},{"id":4,"title":5,"body":6,"description":232,"extension":233,"meta":234,"navigation":253,"path":263,"seo":264,"stem":265,"__hash__":266},"content/dict/symbols.md","NetLogo Dictionary: symbols",{"type":7,"value":8,"toc":225},"minimark",[9],[10,11,16,109,113,116,119,122,125,128,131,222],"div",{"className":12,"id":14,"role":15},[13],"dict_entry","symbols","region",[17,18,20,27,39,46,53,60,67,74,81,88,95,102],"h3",{"id":19},"arithmetic-operators1010-101010101010101010",[21,22,26],"a",{"href":23,"role":24,"ariaLabel":25},"#symbols","doc-noteref","Reference to Arithmetic Operators","\nArithmetic Operators\n",[21,28,30,31],{"href":23,"role":24,"ariaLabel":29},"Reference to +","\n+\n",[32,33,38],"span",{"className":34,"role":36,"ariaLabel":37},[35],"since","note","Since version","\n1.0\n",[21,40,42,43],{"href":23,"role":24,"ariaLabel":41},"Reference to *","\n*\n",[32,44,38],{"className":45,"role":36,"ariaLabel":37},[35],[21,47,49,50],{"href":23,"role":24,"ariaLabel":48},"Reference to -","\n-\n",[32,51,38],{"className":52,"role":36,"ariaLabel":37},[35],[21,54,56,57],{"href":23,"role":24,"ariaLabel":55},"Reference to /","\n/\n",[32,58,38],{"className":59,"role":36,"ariaLabel":37},[35],[21,61,63,64],{"href":23,"role":24,"ariaLabel":62},"Reference to ^","\n^\n",[32,65,38],{"className":66,"role":36,"ariaLabel":37},[35],[21,68,70,71],{"href":23,"role":24,"ariaLabel":69},"Reference to \u003C","\n\u003C\n",[32,72,38],{"className":73,"role":36,"ariaLabel":37},[35],[21,75,77,78],{"href":23,"role":24,"ariaLabel":76},"Reference to >","\n>\n",[32,79,38],{"className":80,"role":36,"ariaLabel":37},[35],[21,82,84,85],{"href":23,"role":24,"ariaLabel":83},"Reference to =","\n=\n",[32,86,38],{"className":87,"role":36,"ariaLabel":37},[35],[21,89,91,92],{"href":23,"role":24,"ariaLabel":90},"Reference to !=","\n!=\n",[32,93,38],{"className":94,"role":36,"ariaLabel":37},[35],[21,96,98,99],{"href":23,"role":24,"ariaLabel":97},"Reference to \u003C=","\n\u003C=\n",[32,100,38],{"className":101,"role":36,"ariaLabel":37},[35],[21,103,105,106],{"href":23,"role":24,"ariaLabel":104},"Reference to >=","\n>=\n",[32,107,38],{"className":108,"role":36,"ariaLabel":37},[35],[110,111,112],"p",{},"All of these operators take two inputs, and all act as “infix\noperators” (going between the two inputs, as in standard\nmathematical use). NetLogo correctly supports order of operations\nfor infix operators.",[110,114,115],{},"The operators work as follows: + is addition, * is multiplication, - is subtraction, / is division, ^ is exponentiation, \u003C is less\nthan, > is greater than, = is equal to, != is not equal to,\n\u003C= is less than or equal, >= is greater than or equal.",[110,117,118],{},"Note that the subtraction operator (-) always takes two inputs\nunless you put parentheses around it, in which case it can take one\ninput. For example, to take the negative of x, write (- x), with\nthe parentheses.",[110,120,121],{},"All of the comparison operators also work on strings.",[110,123,124],{},"All of the comparison operators work on agents. Turtles are\ncompared by who number. Patches are compared top to bottom left to\nright, so patch 0 10 is less than patch 0 9 and patch 9 0 is less\nthan patch 10 0. Links are ordered by end points and in case of a\ntie by breed. So link 0 9 is before link 1 10 as the end1 is\nsmaller, and link 0 8 is less than link 0 9. If there are multiple\nbreeds of links unbreeded links will come before breeded links of\nthe same end points and breeded links will be sorted in the order\nthey are declared in the Code tab.",[110,126,127],{},"Agentsets can be tested for equality or inequality. Two agentsets\nare equal if they are the same type (turtle or patch or link) and contain\nthe same agents.",[110,129,130],{},"If you are not sure how NetLogo will interpret your code, you\nshould add parentheses.",[132,133,134],"pre",{},[135,136,137,143,144,143,149,143,154,143,158,143,162,143,165,143,169,173,176,143,181,185,187,143,190,143,193,196,197,143,200,143,203,206,207,143,210,213,215,143,218],"code",{},[32,138,142],{"className":139},[140,141],"token","command","show"," ",[32,145,148],{"className":146},[140,147],"number","5",[32,150,153],{"className":151},[140,152],"reporter","*",[32,155,157],{"className":156},[140,147],"6",[32,159,161],{"className":160},[140,152],"+",[32,163,157],{"className":164},[140,147],[32,166,168],{"className":167},[140,152],"/",[32,170,172],{"className":171},[140,147],"3",[174,175],"br",{},[32,177,180],{"className":178},[140,179],"variable","=>",[32,182,184],{"className":183},[140,147],"32",[174,186],{},[32,188,142],{"className":189},[140,141],[32,191,148],{"className":192},[140,147],[32,194,153],{"className":195},[140,152]," (",[32,198,157],{"className":199},[140,147],[32,201,161],{"className":202},[140,152],[32,204,157],{"className":205},[140,147],") ",[32,208,168],{"className":209},[140,152],[32,211,172],{"className":212},[140,147],[174,214],{},[32,216,180],{"className":217},[140,179],[32,219,221],{"className":220},[140,147],"20",[110,223,224],{},"Many extension objects may be tested for equality and inequality\nusing = and !=.\nFor instance, the array, matrix, and table objects returned by their\nrespective extensions may be compared for equality / inequality.\nExtension objects may not be tested using \u003C, >, \u003C=, or >=.",{"title":226,"searchDepth":227,"depth":228,"links":229},"",5,3,[230],{"id":19,"depth":228,"text":231},"\nArithmetic Operators\n\n+\n\n1.0\n\n*\n\n1.0\n\n-\n\n1.0\n\n/\n\n1.0\n\n^\n\n1.0\n\n\u003C\n\n1.0\n\n>\n\n1.0\n\n=\n\n1.0\n\n!=\n\n1.0\n\n\u003C=\n\n1.0\n\n>=\n\n1.0\n","Documentation for the symbols primitive.","md",{"source":235,"metadataOutputPath":236,"projectConfig":237,"language":245,"inheritFrom":254,"output":253,"version":238,"layout":255,"dictionaryDisplayName":256,"dictionaryHomeDirectory":257,"indexFileURI":258,"currentItemId":14,"currentItemLabel":259,"primRoot":260,"icon":261,"assetsRoot":262},"autogen/dict/symbols.md","content/dict/symbols.metadata.yaml",{"version":238,"projectRoot":239,"scanRoot":240,"outputRoot":241,"defaults":242,"engine":248,"partials":249,"dedupeIdenticalDiskWrites":253},"7.0.4",".","autogen","content",{"inheritFrom":243,"language":245,"output":246,"extension":233,"title":247,"version":238},[244],0,"en",false,"NetLogo User Manual","handlebars",{"directoryPaths":250,"extensions":251},[239],[252,233],"mustache",true,[244],"catalog","NetLogo Dictionary","/dictionary.html","/_index/dict.txt","Arithmetic Operators, +, *, -, /, ^, \u003C, >, =, !=, \u003C=, >=","dict","i-lucide-square-code","/home/runner/work/Helio/Helio/apps/docs/autogen","/dict/symbols",{"title":5,"description":232},"dict/symbols","2-1IJ-IHBdHAW4OQzgspfHxHmn-gZRknBCd99SUthRk",[268,273],{"title":269,"path":270,"stem":271,"description":272,"children":-1},"NetLogo Dictionary: sum","/dict/sum","dict/sum","Documentation for the sum primitive.",{"title":274,"path":275,"stem":276,"description":277,"children":-1},"NetLogo Dictionary: tan","/dict/tan","dict/tan","Documentation for the tan primitive.",1777657738931]