kodekeep/binary

View on GitHub
src/Buffer/Writer/Concerns/UnsignedInteger.php

Summary

Maintainability
A
2 hrs
Test Coverage
F
0%
<?php

declare(strict_types=1);

/**
 * Copyright (c) Konceiver Oy <legal@konceiver.dev>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace Konceiver\Binary\Buffer\Writer\Concerns;

use Konceiver\Binary\UnsignedInteger\Writer;

trait UnsignedInteger
{
    /**
     * Write an unsigned 8 bit integer.
     *
     * @param int $value
     *
     * @return \Konceiver\Binary\Buffer\Writer\Buffer
     */
    public function writeUInt8(int $value): self
    {
        $this->bytes .= Writer::bit8($value);

        return $this;
    }

    /**
     * Write an unsigned 16 bit integer.
     *
     * @param int $value
     *
     * @return \Konceiver\Binary\Buffer\Writer\Buffer
     */
    public function writeUInt16(int $value): self
    {
        $this->bytes .= Writer::bit16($value);

        return $this;
    }

    /**
     * Write an unsigned 32 bit integer.
     *
     * @param int $value
     *
     * @return \Konceiver\Binary\Buffer\Writer\Buffer
     */
    public function writeUInt32(int $value): self
    {
        $this->bytes .= Writer::bit32($value);

        return $this;
    }

    /**
     * Write an unsigned 64 bit integer.
     *
     * @param int $value
     *
     * @return \Konceiver\Binary\Buffer\Writer\Buffer
     */
    public function writeUInt64(int $value): self
    {
        $this->bytes .= Writer::bit64($value);

        return $this;
    }
}