MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / enumerateIterator

Function enumerateIterator

source/core/StarPythonic.hpp:593–595  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

591
592template <typename Iterable>
593EnumerateIterator<decltype(std::declval<Iterable>().begin())> enumerateIterator(Iterable& list) {
594 return EnumerateIterator<decltype(std::declval<Iterable>().begin())>(list.begin(), list.end());
595}
596
597template <typename ResultContainer, typename Iterable>
598ResultContainer enumerateConstruct(Iterable&& list) {

Callers 6

buildRegionMethod · 0.85
dungeonsMethod · 0.85
produceSystemMethod · 0.85
pollMethod · 0.85
enumerateConstructFunction · 0.85
enumerateFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected