-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCollection.php
125 lines (97 loc) · 1.97 KB
/
Collection.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
namespace AC;
use Iterator;
/**
* Used to hold values from the same type
*/
class Collection
implements Iterator {
/**
* @var array
*/
protected $items;
public function __construct( array $items = [] ) {
$this->items = $items;
}
public function all() {
return $this->items;
}
public function has( $key ) {
return isset( $this->items[ $key ] );
}
public function put( $key, $value ) {
$this->items[ $key ] = $value;
return $this;
}
public function push( $value ) {
$this->items[] = $value;
}
public function get( $key, $default = null ) {
if ( $this->has( $key ) ) {
return $this->items[ $key ];
}
return $default;
}
public function __get( $key ) {
return $this->get( $key );
}
#[\ReturnTypeWillChange]
public function rewind() {
reset( $this->items );
}
public function first() {
return reset( $this->items );
}
#[\ReturnTypeWillChange]
public function current() {
return current( $this->items );
}
#[\ReturnTypeWillChange]
public function key() {
return key( $this->items );
}
#[\ReturnTypeWillChange]
public function next() {
return next( $this->items );
}
public function get_copy() {
return $this->items;
}
#[\ReturnTypeWillChange]
public function valid() {
$key = $this->key();
return ( $key !== null && $key !== false );
}
public function count() {
return count( $this->items );
}
/**
* Filter collection items
* @return Collection
*/
public function filter() {
return new Collection( ac_helper()->array->filter( $this->items ) );
}
/**
* Limit array to max number of items
*
* @param int $length
*
* @return int Number of removed items
*/
public function limit( $length ) {
$count = $this->count();
if ( 0 < $length ) {
$this->items = array_slice( $this->items, 0, $length );
}
return $count - $this->count();
}
/**
* @param string $glue
*
* @return string
*/
public function implode( $glue = '' ) {
return implode( $glue, $this->items );
}
}