MCPcopy Create free account
hub / github.com/Snapchat/Valdi / tsn_iterator_next

Function tsn_iterator_next

tsn/src/tsn/tsn.cpp:1874–1880  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1872}
1873
1874tsn_value tsn_iterator_next(tsn_vm* ctx, tsn_iterator* iterator) {
1875 int done = 0;
1876 auto nextValue = JS_IteratorNext_tsn(ctx, iterator->iterator_value, iterator->iterator_method, &done);
1877 iterator->has_dequeued_value = done == 0;
1878
1879 return nextValue;
1880}
1881
1882tsn_value tsn_keys_iterator_next(tsn_vm* ctx, tsn_iterator* iterator) {
1883 int done = 0;

Callers 1

tsn_copy_properties_implFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected