<% unless methods.empty? %>

<%= Crystal::Doc.anchor_link(title) %> <%= title %>

<% methods.each do |method| %>
<%= method.abstract? ? "abstract " : "" %> <%= method.kind %><%= method.name %><%= method.args_to_html %> #
<% if doc = method.formatted_doc %>
<% if doc_copied_from = method.doc_copied_from %>
Description copied from <%= doc_copied_from.kind %> <%= doc_copied_from.link_from(method.type) %>
<% end %> <%= doc %>
<% end %>
<% if source_link = method.location.try(&.url) %> [View source] <% end %>
<% end %> <% end %>