phpOMS/tests/Algorithm/Sort/NumericElement.php
Dennis Eichhorn 32d6eafaba
Some checks failed
CI / general_module_workflow_php (push) Has been cancelled
fix version and bugs
2024-05-21 00:09:22 +02:00

68 lines
1.4 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.2
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Algorithm\Sort;
use phpOMS\Algorithm\Sort\SortableInterface;
use phpOMS\Algorithm\Sort\SortOrder;
require_once __DIR__ . '/../../Autoloader.php';
class NumericElement implements SortableInterface
{
public int |
float $value = 0;
public function __construct(int | float $value)
{
$this->value = $value;
}
public function compare(SortableInterface $obj, int $order = SortOrder::ASC) : bool
{
return $order === SortOrder::ASC ? $this->value >= $obj->value : $this->value <= $obj->value;
}
public function equals(SortableInterface $obj) : bool
{
return $this->value === $obj->getValue();
}
public function getValue() : int | float
{
return $this->value;
}
public static function max(array $list) : int | float
{
$values = [];
foreach ($list as $element) {
$values[] = $element->value;
}
return \max($values);
}
public static function min(array $list) : int | float
{
$values = [];
foreach ($list as $element) {
$values[] = $element->value;
}
return \min($values);
}
}