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

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.


write-file (file port #:key select?)
Channel: guix
Location: guix/serialization.scm (guix serialization)
Documentation:

Write the contents of FILE to PORT in Nar format, recursing into sub-directories of FILE as needed. For each directory entry, call (SELECT? FILE STAT), where FILE is the entry's absolute file name and STAT is the result of 'lstat'; exclude entries for which SELECT? does not return true.

substitutable?
Channel: guix
Location: guix/serialization.scm (guix serialization)
path-info-nar-size
Channel: guix
Location: guix/serialization.scm (guix serialization)
dump-file (file input size type)
Channel: guix
Location: guix/serialization.scm (guix serialization)
Documentation:

Dump SIZE bytes from INPUT to FILE, throwing system-error with an errno of EEXIST if FILE already exists.

This procedure is suitable for use as the #:dump-file argument to 'restore-file'.

long-long
Channel: guix
Location: guix/serialization.scm (guix serialization)
path-info
Channel: guix
Location: guix/serialization.scm (guix serialization)
nar-error-file
Channel: guix
Location: guix/serialization.scm (guix serialization)
stream
Channel: guix
Location: guix/serialization.scm (guix serialization)
substitutable-references
Channel: guix
Location: guix/serialization.scm (guix serialization)
setq args
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return a set containing the ARGS, compared as per 'eq?'.

set-contains?
Channel: guix
Location: guix/sets.scm (guix sets)
list->set (lst)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return a set with the elements taken from LST. Elements of the set will be compared with 'equal?'.

set-union (set1 set2)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return the union of SET1 and SET2. Warning: this is linear in the number of elements of the smallest.

set?
Channel: guix
Location: guix/sets.scm (guix sets)
set->list (set)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return the list of elements of SET.

set-insert (value set)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Insert VALUE into SET.

list->setq (lst)
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return a set with the elements taken from LST. Elements of the set will be compared with 'eq?'.

set args
Channel: guix
Location: guix/sets.scm (guix sets)
Documentation:

Return a set containing the ARGS, compared as per 'equal?'.

open-ssh-session (host #:key user port identity host-key compression timeout connection-timeout strict-host-key-check?)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:
Open an SSH session for HOST and return it. IDENTITY specifies the file name of a private key to use for authenticating with the host. When USER, PORT, or IDENTITY are #f, use default values or whatever '~/.ssh/config' specifies; otherwise use them. When HOST-KEY is true, it must be a string like "ssh-ed25519 AAAAC3Nz… root@example.org"; the server is authenticated and an error is raised if its host key is different from HOST-KEY. Error out if connection establishment takes more than CONNECTION-TIMEOUT seconds. Install TIMEOUT as the maximum time in seconds after which a read or write operation on a channel of the returned session is considered as failing. If STRICT-HOST-KEY-CHECK? is #f, strict host key checking is turned off for the new session. Throw an error on failure.
remote-authorize-signing-key (key session #:optional become-command)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Send KEY, a canonical sexp containing a public key, over SESSION and add it to the system ACL file if it has not yet been authorized.

send-files (local files remote #:key recursive? log-port)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Send the subset of FILES from LOCAL (a local store) that's missing to REMOTE, a remote store. When RECURSIVE? is true, send the closure of FILES. Return the list of store items actually sent.

remote-daemon-channel (session #:optional socket-name)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Return an input/output port (an SSH channel) to the daemon at SESSION.

retrieve-files* (files remote #:key recursive? log-port import)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Pass IMPORT an input port from which to read the sequence of FILES coming from REMOTE. When RECURSIVE? is true, retrieve the closure of FILES.

connect-to-remote-daemon (session #:optional socket-name)
Channel: guix
Location: guix/ssh.scm (guix ssh)
Documentation:

Connect to the remote build daemon listening on SOCKET-NAME over SESSION, an SSH session. Return a <store-connection> object.

Total public symbols: 86650