<?php
namespace App\Data;
/**
* An immutable collection of values with operators for manipulation or check.
*/
interface RangeFinderInterface extends \IteratorAggregate
{
public function __construct(iterable $values = []);
/**
* Returns values that are between, and including, the passed values. [min, max]
*
* For the purpose of this code challenge, all non-numeric values should be dropped.
*
* @param int|float|string $min
* @param int|float|string $max
*
* @return static
*/
public function between($min, $max): self;
public function after($min): self;
public function before($max): self;
/**
* @param callable|null $by Accepts a single argument and returns a boolean `fn(mixed): bool`
*
* @return static
*/
public function filter(?callable $by): self;
/**
* @param callable $by Accepts a single argument and returns a boolean `fn(mixed): bool`
*
* @return bool
*/
public function some(callable $by): bool;
/**
* @param callable $by Accepts a single argument and returns a boolean `fn(mixed): bool`
*
* @return bool
*/
public function every(callable $by): bool;
/**
* @return array
*/
public function all(): array;
}
Experts Exchange always has the answer, or at the least points me in the correct direction! It is like having another employee that is extremely experienced.
When asked, what has been your best career decision?
Deciding to stick with EE.
Being involved with EE helped me to grow personally and professionally.
Connect with Certified Experts to gain insight and support on specific technology challenges including:
We've partnered with two important charities to provide clean water and computer science education to those who need it most. READ MORE