MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / begin

Function begin

3rdparty/cppzmq/zmq.hpp:238–241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236using std::begin;
237using std::end;
238template<class T> auto begin(T &&r) -> decltype(begin(std::forward<T>(r)))
239{
240 return begin(std::forward<T>(r));
241}
242template<class T> auto end(T &&r) -> decltype(end(std::forward<T>(r)))
243{
244 return end(std::forward<T>(r));

Calls

no outgoing calls

Tested by

no test coverage detected