HH\Lib\Math\ceil

Meta Engineer?

This is available as Math\ceil in the www repository.

Returns the smallest integer value greater than or equal to $value

namespace HH\Lib\Math;

function ceil(
  num $value,
): float;

To find the largest integer value less than or equal to $value, see Math\floor().

Parameters

  • num $value

Returns

  • float

Examples

$val_1 = 3.2;
$ceil_1 = Math\ceil($val_1);
echo "Ceiling of $val_1 is $ceil_1 \n";

$val_2 = 7;
$ceil_2 = Math\ceil($val_2);
echo "Ceiling of $val_2 is $ceil_2 \n";