MCPcopy Create free account
hub / github.com/HumbleUI/Skija / next

Method next

shared/java/PathSegmentIterator.java:14–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12 public PathSegment _nextSegment;
13
14 @Override
15 public PathSegment next() {
16 try {
17 if (_nextSegment._verb == PathVerb.DONE)
18 throw new NoSuchElementException();
19 PathSegment res = _nextSegment;
20 _nextSegment = _nNext(_ptr);
21 return res;
22 } finally {
23 ReferenceUtil.reachabilityFence(this);
24 }
25 }
26
27 @Override
28 public boolean hasNext() {

Callers

nothing calls this directly

Calls 2

_nNextMethod · 0.95
reachabilityFenceMethod · 0.95

Tested by

no test coverage detected