WoW:API ceil: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Use Lua/Libshortcut template. Change category from "LUA Functions" to "Lua functions".)
m (Move page script moved page API ceil to API ceil without leaving a redirect)
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{:Lua/Libshortcut|ceil|math.ceil}}
{{wowlua}}
 
ceil(value) returns the ceiling of the value (the next highest whole number) i.e. rounds value ''up''
ceil(value) returns the ceiling of the value (the next highest whole number) i.e. rounds value ''up''
int = math.ceil(n);
int = ceil(n);


== Examples ==
   > print(ceil(3.141592653))
   > print(ceil(3.141592653))
   4
   4


{{LUA}}
  round
  > print(ceil(n - .5))

Latest revision as of 04:45, 15 August 2023

WoW Lua

ceil(value) returns the ceiling of the value (the next highest whole number) i.e. rounds value up

int = math.ceil(n);
int = ceil(n);

Examples[edit]

 > print(ceil(3.141592653))
 4
 round
 > print(ceil(n - .5))