-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathIterable.php
More file actions
45 lines (41 loc) · 1.33 KB
/
Iterable.php
File metadata and controls
45 lines (41 loc) · 1.33 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang;
/**
* The `Iterable` interface was auto generated.
*/
interface Iterable
{
/**
* Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#forEach
* @NotImplemented
*/
// public function forEach($a = null)
/**
* Returns an iterator over elements of type T.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#iterator
* @NotImplemented
*/
// public function iterator($a = null)
/**
* Creates a Spliterator over the elements described by this Iterable.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#spliterator
* @NotImplemented
*/
// public function spliterator($a = null)
}