Actually div() would be a really useful function. Div would essentially be the equivalent of:
Code:
result = x / y;
if(result > 0)
{
  result = Floor(result);
}
else
{
  result = Ceiling(result);
}