-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathOfLong.php
More file actions
33 lines (30 loc) · 1.05 KB
/
OfLong.php
File metadata and controls
33 lines (30 loc) · 1.05 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\util\Spliterator;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `OfLong` interface was auto generated.
*/
interface OfLong
{
/**
* Performs the given action for each remaining element, sequentially in the current thread, 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/util/package-summary.html#forEachRemaining
* @NotImplemented
*/
// public function forEachRemaining($a = null)
/**
* If a remaining element exists, performs the given action on it, returning true; else returns false.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#tryAdvance
* @NotImplemented
*/
// public function tryAdvance($a = null)
}