承接 dgame/php-iterator 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dgame/php-iterator

最新稳定版本:v0.4.0

Composer 安装命令:

composer require dgame/php-iterator

包简介

php iterator

README 文档

README

Scrutinizer Code Quality Code Coverage Build Status StyleCI Build Status

Enjoy high order functions

only & repeat

$this->assertEquals('aaaa', only('a')->repeat(4)->implode());

take

$this->assertEquals('Hal', chars('Hallo')->take(3)->implode());

skip

$this->assertEquals('lo', chars('Hallo')->skip(3)->implode());

slice

$this->assertEquals('oBar', chars('FooBarQuatz')->slice(2, 6)->implode());

chunks

$this->assertEquals([['F', 'o'], ['o', 'B'], ['a', 'r']], chars('FooBar')->chunks(2)->collect());

fold

$it = iter([6, 7, 8]);

$sum1 = function($sum, int $a) {
    return $sum + $a;
};

$sum2 = function(int $sum, int $a) {
    return $sum + $a;
};

$this->assertEquals(21, $it->fold($sum1));
$this->assertEquals(63, $it->fold($sum2, 42));

take while

$belowTen = function (int $item) {
    return $item < 10;
};

$this->assertEquals([0, 1, 2], iter([0, 1, 2, 10, 20])->takeWhile($belowTen)->collect());

skip while

$belowTen = function (int $item) {
    return $item < 10;
};

$this->assertEquals([10, 20], iter([0, 1, 2, 10, 20])->skipWhile($belowTen)->collect());

before

$this->assertEquals('ab', chars('abcdef')->before('c')->implode());
$this->assertEquals(['a' => 'z', 'b' => 'y'], iter(['a' => 'z', 'b' => 'y', 'c' => 'x', 'd' => 'w'])->before('x')->collect());

after

$this->assertEquals('ef', chars('abcdef')->after('d')->implode());
$this->assertEquals(['d' => 'w'], iter(['a' => 'z', 'b' => 'y', 'c' => 'x', 'd' => 'w'])->after('x')->collect());

from

$this->assertEquals('def', chars('abcdef')->from('d')->implode());
$this->assertEquals(['c' => 'x', 'd' => 'w'], iter(['a' => 'z', 'b' => 'y', 'c' => 'x', 'd' => 'w'])->from('x')->collect());

until

$this->assertEquals('abc', chars('abcdef')->until('c')->implode());
$this->assertEquals(['a' => 'z', 'b' => 'y', 'c' => 'x'], iter(['a' => 'z', 'b' => 'y', 'c' => 'x', 'd' => 'w'])->until('x')->collect());

all

$positive = function (int $item) {
    return $item >= 0;
};

$this->assertTrue(iter([0, 1, 2, 3])->all($positive));
$this->assertFalse(iter([-1, 2, 3, 4])->all($positive));

any

$positive = function (int $item) {
    return $item > 0;
};

$this->assertTrue(iter([-1, 0, 1])->any($positive));
$this->assertFalse(iter([-1])->any($positive));

统计信息

  • 总下载量: 107.86k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-05-15