Function: gnus-search-indexed-parse-output

gnus-search-indexed-parse-output is a byte-compiled function defined in gnus-search.el.gz.

Signature

(gnus-search-indexed-parse-output ENGINE SERVER QUERY &optional GROUPS)

Documentation

Parse the results of ENGINE's QUERY against SERVER in GROUPS.

Locally-indexed search engines return results as a list of filenames, sometimes with additional information. Returns a list of viable results, in the form of a list of [group article score] vectors.

Implementations

((engine gnus-search-indexed) server query &optional groups) in `gnus-search.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-search.el.gz
;;; Methods for the indexed search engines.

;; First, some common methods.

(cl-defgeneric gnus-search-indexed-parse-output (engine server query &optional groups)
  "Parse the results of ENGINE's QUERY against SERVER in GROUPS.
Locally-indexed search engines return results as a list of
filenames, sometimes with additional information.  Returns a list
of viable results, in the form of a list of [group article score]
vectors.")