-
Notifications
You must be signed in to change notification settings - Fork 446
Expand file tree
/
Copy pathAbstractCollectionMutator.php
More file actions
112 lines (95 loc) · 2.08 KB
/
AbstractCollectionMutator.php
File metadata and controls
112 lines (95 loc) · 2.08 KB
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
<?php
declare(strict_types=1);
namespace BitWasp\Bitcoin\Transaction\Mutator;
abstract class AbstractCollectionMutator implements \Iterator, \ArrayAccess, \Countable
{
/**
* @var array
*/
protected $set = [];
private $position = 0;
/**
* @return array
*/
public function all(): array
{
return $this->set;
}
/**
* @return bool
*/
public function isNull(): bool
{
return count($this->set) === 0;
}
/**
* @return int
*/
public function count(): int
{
return count($this->set);
}
public function rewind(): void
{
$this->position = 0;
}
/**
* @return mixed
*/
public function current()
{
return $this->set[$this->position];
}
public function key(): int
{
return $this->position;
}
public function next(): void
{
++$this->position;
}
public function valid(): bool
{
return array_key_exists($this->position, $this->set);
}
/**
* @param int $offset
* @return bool
*/
public function offsetExists($offset): bool
{
return array_key_exists($offset, $this->set);
}
/**
* @param int $offset
*/
public function offsetUnset($offset)
{
if (!$this->offsetExists($offset)) {
throw new \InvalidArgumentException('Offset does not exist');
}
$this->set = array_slice($this->set, 0, $offset - 1) + array_slice($this->set, $offset + 1);
}
/**
* @param int $offset
* @return mixed
*/
public function offsetGet($offset)
{
if (!array_key_exists($offset, $this->set)) {
throw new \OutOfRangeException('Nothing found at this offset');
}
return $this->set[$offset];
}
/**
* @param int $offset
* @param mixed $value
*/
public function offsetSet($offset, $value)
{
if ($offset > count($this->set)) {
throw new \InvalidArgumentException();
}
$this->set[$offset] = $value;
}
}