Difference between revisions of "Larger and Smaller Operators"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 12: Line 12:
 
=== Examples ===
 
=== Examples ===
 
'''Simple larger examples'''
 
'''Simple larger examples'''
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
x=a<>b -- faster than x=math.max(a,b)
 
x=a<>b -- faster than x=math.max(a,b)
 
x=(x-1)<>5 -- decrement x, but don't go below 5
 
x=(x-1)<>5 -- decrement x, but don't go below 5
Line 18: Line 18:
  
 
'''Simple smaller examples'''
 
'''Simple smaller examples'''
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
x=a><b -- faster than x=math.min(a,b)
 
x=a><b -- faster than x=math.min(a,b)
 
x=(x+1)><15 -- increment x, but don't go above 15
 
x=(x+1)><15 -- increment x, but don't go above 15
Line 24: Line 24:
  
 
'''Make sure x is within bounds example'''
 
'''Make sure x is within bounds example'''
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
x=(x<>min)><max
 
x=(x<>min)><max
 
</source>
 
</source>
  
 
'''Always return the negative of a number'''
 
'''Always return the negative of a number'''
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
x=-x><x -- faster than -math.abs
 
x=-x><x -- faster than -math.abs
 
</source>
 
</source>
  
 
'''Always return the positive of a number'''
 
'''Always return the positive of a number'''
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
x=-x<>x -- faster than math.abs
 
x=-x<>x -- faster than math.abs
 
</source>
 
</source>
  
 
{{GIDEROS IMPORTANT LINKS}}
 
{{GIDEROS IMPORTANT LINKS}}

Revision as of 15:28, 13 July 2023

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.png
Available since: Gideros 2017.10

Description

Operators to return the larger or smaller of two values.

a<>b   compares 'a' and 'b', returns the larger of them.

a><b   compares 'a' and 'b', returns the smaller of them.

Examples

Simple larger examples <syntaxhighlight lang="lua"> x=a<>b -- faster than x=math.max(a,b) x=(x-1)<>5 -- decrement x, but don't go below 5 </source>

Simple smaller examples <syntaxhighlight lang="lua"> x=a><15 -- increment x, but don't go above 15 </source>

Make sure x is within bounds example <syntaxhighlight lang="lua"> x=(x<>min)><max </source>

Always return the negative of a number <syntaxhighlight lang="lua"> x=-x><x -- faster than -math.abs </source>

Always return the positive of a number <syntaxhighlight lang="lua"> x=-x<>x -- faster than math.abs </source>