/** ** \file type/function.hxx ** \brief Inline methods for type::Function. */ #pragma once #include #include namespace type { inline const Record& Function::formals_get() const { return *formals_; } inline const Type& Function::result_get() const { return result_; } } // namespace type