19 declare(strict_types=1);
39 private static function oneByteRangeExcept(array $ignore = []): array
41 $byte_range = range(0, 0xFE);
42 $set_names =
array_map(fn(
int $codepoint) =>
'Codepoint: ' . $codepoint, $byte_range);
47 fn(
string $chr,
int $codepoint) => (
48 ctype_alnum($chr) || in_array($chr, $ignore,
true) ?
49 self::asDataProviderArgs($chr,
'assertSame') :
50 self::asDataProviderArgs(self::isAscii($codepoint) ? $chr : self::twoByteChar($codepoint),
'assertNotSame')
58 private static function isAscii(
int $codepoint): bool
60 return $codepoint <= 127;
67 private static function twoByteChar(
int $codepoint): string
69 return chr($codepoint >> 6 & 0x3f | 0xc0) . chr($codepoint & 0x3f | 0x80);
76 private static function asDataProviderArgs(
string $chr,
string $method): array
78 return [$chr, $chr, $method];