blob: da10ab2beae7339a58078b878a8e79665acfd051 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\BitOps;
enum PackIntSpecifiers: string
{
case Int8 = 'c';
case Int16LittleEndian = 'v';
case Int32LittleEndian = 'V';
case Int64BigEndian = 'J';
case Int64LittleEndian = 'P';
}
|