MCPcopy Create free account
hub / github.com/argotorg/solidity / toStringInParentheses

Function toStringInParentheses

libsolidity/ast/Types.cpp:114–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112}
113
114std::string toStringInParentheses(TypePointers const& _types, bool _withoutDataLocation)
115{
116 return '(' + util::joinHumanReadable(
117 _types | ranges::views::transform([&](auto const* _type) { return _type->toString(_withoutDataLocation); }),
118 ","
119 ) + ')';
120}
121
122}
123

Callers 2

humanReadableNameMethod · 0.85
toStringMethod · 0.85

Calls 2

joinHumanReadableFunction · 0.85
toStringMethod · 0.45

Tested by

no test coverage detected