_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/

Enter the query into the form above.

API method:

GET /api/symbols?search=hello&page=1&limit=20

where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned in response headers.

If you'd like to join our channel search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.


comment-margin?
Channel: guix
Location: guix/read-print.scm (guix read-print)
comment (str #:optional margin?)
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Return a new comment made from STR. When MARGIN? is true, return a margin comment; otherwise return a line comment. STR must start with a semicolon and end with newline, otherwise an error is raised.

canonicalize-comment (comment indent)
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Canonicalize COMMENT, which is to be printed at INDENT, ensuring it has the "right" number of leading semicolons.

pretty-print-with-comments/splice (port lst . rest)
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Write to PORT the expressions and blanks listed in LST.

vertical-space
Channel: guix
Location: guix/read-print.scm (guix read-print)
<comment>
Channel: guix
Location: guix/read-print.scm (guix read-print)
comment?
Channel: guix
Location: guix/read-print.scm (guix read-print)
read-with-comments (port #:key blank-line?)
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Like 'read', but include <blank> objects when they're encountered. When BLANK-LINE? is true, assume PORT is at the beginning of a new line.

canonicalize-vertical-space
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Return a vertical space corresponding to a single blank line.

vertical-space?
Channel: guix
Location: guix/read-print.scm (guix read-print)
page-break
Channel: guix
Location: guix/read-print.scm (guix read-print)
blank?
Channel: guix
Location: guix/read-print.scm (guix read-print)
page-break?
Channel: guix
Location: guix/read-print.scm (guix read-print)
read-with-comments/sequence (port)
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Read from PORT until the end-of-file is reached and return the list of expressions and blanks that were read.

object->string* (obj indent . args)
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Pretty-print OBJ with INDENT columns as the initial indent. ARGS are passed as-is to 'pretty-print-with-comments'.

comment->string
Channel: guix
Location: guix/read-print.scm (guix read-print)
pretty-print-with-comments (port obj #:key format-comment format-vertical-space indent max-width long-list)
Channel: guix
Location: guix/read-print.scm (guix read-print)
Documentation:

Pretty-print OBJ to PORT, attempting to at most MAX-WIDTH character columns and assuming the current column is INDENT. Comments present in OBJ are included in the output.

Lists longer than LONG-LIST are written as one element per line. Comments are passed through FORMAT-COMMENT before being emitted; a useful value for FORMAT-COMMENT is 'canonicalize-comment'. Vertical space is passed through FORMAT-VERTICAL-SPACE; a useful value of 'canonicalize-vertical-space'.

define-record-type*
Channel: guix
Location: guix/records.scm (guix records)
match-record
Channel: guix
Location: guix/records.scm (guix records)
alist->record (alist make keys #:optional multiple-value-keys)
Channel: guix
Location: guix/records.scm (guix records)
Documentation:

Apply MAKE to the values associated with KEYS in ALIST. Items in KEYS that are also in MULTIPLE-VALUE-KEYS are considered to occur possibly multiple times in ALIST, and thus their value is a list.

object->fields (object fields port)
Channel: guix
Location: guix/records.scm (guix records)
Documentation:

Write OBJECT (typically a record) as a series of recutils-style fields to PORT, according to FIELDS. FIELDS must be a list of field name/getter pairs.

this-record
Channel: guix
Location: guix/records.scm (guix records)
recutils->alist (port)
Channel: guix
Location: guix/records.scm (guix records)
Documentation:

Read a recutils-style record from PORT and return it as a list of key/value pairs. Stop upon an empty line (after consuming it) or EOF.

match-record-lambda
Channel: guix
Location: guix/records.scm (guix records)
Total public symbols: 88182