Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/vuejs/core
/ next
Function
next
packages/reactivity/src/collectionHandlers.ts:63–71 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
61
{
62
// iterator protocol
63
next() {
64
const
{ value, done } = innerIterator.next()
65
return
done
66
? { value, done }
67
: {
68
value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value),
69
done,
70
}
71
},
72
},
73
)
74
}
Callers
nothing calls this directly
Calls
1
next
Method · 0.80
Tested by
no test coverage detected