Difference between revisions of "Osiris/API/IntegerMin"

From Divinity Engine Wiki
Jump to: navigation, search
(Created page with "===== Full Definition(s) ===== * query '''IntegerMin'''('''''[in]'''(INTEGER)'''''_A''',''''' [in]'''(INTEGER)'''''_B''',''''' [out]'''''(''INTEGER'')'''_Minimum''') ===== Des...")
 
m
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
===== Full Definition(s) =====
 
===== Full Definition(s) =====
* query '''IntegerMin'''('''''[in]'''(INTEGER)'''''_A''',''''' [in]'''(INTEGER)'''''_B''',''''' [out]'''''(''INTEGER'')'''_Minimum''')
+
* query '''IntegerMin'''('''''[in]'''(INTEGER)'''''_A''', '''''[in]'''(INTEGER)'''''_B''', '''''[out]'''(INTEGER)'''''_Minimum''')
 
===== Description =====
 
===== Description =====
 
Returns the smaller of two integers '''_A''' and '''_B''' as '''_Minimum'''.
 
Returns the smaller of two integers '''_A''' and '''_B''' as '''_Minimum'''.
 
===== Return Values =====
 
===== Return Values =====
 
* '''Success/Failure''': Never fails.
 
* '''Success/Failure''': Never fails.
* '''_Min''': The smaller of '''_A''' and '''_B'''.
+
* '''_Minimum''': The smaller of '''_A''' and '''_B'''.
 
===== Notes =====
 
===== Notes =====
 
-
 
-
 
===== See Also =====
 
===== See Also =====
 
* [[Osiris/API/IntegerMax]]
 
* [[Osiris/API/IntegerMax]]
 +
* [[Osiris/API/RealMin]]
 
    
 
    
[[Category:Osiris Queries]]
+
[[Category:Osiris Queries|IntegerMin]]

Latest revision as of 16:36, 19 December 2017

Full Definition(s)
  • query IntegerMin([in](INTEGER)_A, [in](INTEGER)_B, [out](INTEGER)_Minimum)
Description

Returns the smaller of two integers _A and _B as _Minimum.

Return Values
  • Success/Failure: Never fails.
  • _Minimum: The smaller of _A and _B.
Notes

-

See Also