self::$epsilon; } /** * Compares if the first argument greater or equal to the second. * * @param float $a * @param float $b * @return bool * @since 101.0.6 */ public function greaterThanOrEqual(float $a, float $b): bool { return $this->equal($a, $b) || $this->greaterThan($a, $b); } }