MCPcopy Create free account
hub / github.com/apache/tvm-ffi / Feed

Method Feed

tests/cpp/test_reflection.cc:643–643  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

641// vs non-const overloaded with identical params (selected via const_ tag).
642struct Pet {
643 int Feed(const Cat*, int amount) { return 100 + amount; }
644 int Feed(const Dog*, int amount) { return 200 + amount; }
645 int Get(int x) { return 4000 + x; }
646 int Get(int x) const { return 5000 + x; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected