| 370 | namespace interpret { |
| 371 | |
| 372 | template <typename Runtime, auto code> struct Interpret { |
| 373 | using Effect = Runtime; |
| 374 | static constexpr auto retval = code; |
| 375 | }; |
| 376 | |
| 377 | template <typename Runtime, bundle::Bundle<> bundle> |
| 378 | struct Interpret<Runtime, bundle> { |
nothing calls this directly
no outgoing calls
no test coverage detected