davidschwarz/line-number
最新稳定版本:v1.0.3
Composer 安装命令:
composer require davidschwarz/line-number
包简介
Line numbers as immutable value objects. With a WeakMap based repository in the background.
README 文档
README
Line numbers as immutable value objects.
With a WeakMap based repository in the background.
installation
composer require davidschwarz/line-number
example
require __DIR__ . '/vendor/autoload.php'; use DavidSchwarz\LineNumber\Line; $startLine = Line::number(0); $otherLine = $startLine->add(2); $otherLine->equals($startLine); // FALSE $otherLine->equals(2); // TRUE (string) Line::number(7); // '7' Line::number(7)->i; // 7 Line::number(-1); // throws ...\NegativeValueError Line::number(0)->subtract(2); // throws ...\NegativeResultError
license
author
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-01-18