MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / CreateFastIterator

Function CreateFastIterator

include/cpp/FastIterator.h:71–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69
70template<typename T>
71FastIterator_obj<T> *CreateFastIterator(Dynamic inValue)
72{
73 FastIterator_obj<T> *result = dynamic_cast< FastIterator_obj<T> *>(inValue.GetPtr());
74 if (result) return result;
75 return new DynamicIterator<T>(inValue);
76}
77
78template<typename T>
79class HXCPP_EXTERN_CLASS_ATTRIBUTES StringIterator : public cpp::FastIterator_obj<T>

Callers

nothing calls this directly

Calls 1

GetPtrMethod · 0.80

Tested by

no test coverage detected