{{#input-with-autocomplete onSubmit=(action 'searchIdentifier') createSearchUrlFunction=createSearchUrlFunction maxItems=10 selectItem=(action 'showIdentifier') searchButtonText="Search in all packages" placeholder="Haskell identifier" as |identifier|}} {{identifier.demangledOccName}} :: {{type-signature-text components=identifier.idType.components}}
{{identifier.locationInfo.packageId.name}}-{{identifier.locationInfo.packageId.version}} {{#if identifier.locationInfo.modulePath}} {{identifier.locationInfo.modulePath}} {{else}} {{identifier.locationInfo.moduleName}} {{/if}}
{{/input-with-autocomplete}}
Query : {{model.query}}
{{#paginated-list url=model.url as |identifiers|}}
    {{#each identifiers as |identifier|}}
  • {{identifier.demangledOccName}} :: {{type-signature-text components=identifier.idType.components}}
    {{#if identifier.locationInfo.modulePath}} Defined in {{identifier.locationInfo.packageId.name}}-{{identifier.locationInfo.packageId.version}} {{identifier.locationInfo.modulePath}} {{else}} Defined in {{identifier.locationInfo.packageId.name}}-{{identifier.locationInfo.packageId.version}} {{identifier.locationInfo.moduleName}} {{/if}}
    {{{identifier.doc}}}
  • {{/each}}
{{/paginated-list}}