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

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.


%graphml-backend
Channel: guix
Location: guix/graph.scm (guix graph)
node-type
Channel: guix
Location: guix/graph.scm (guix graph)
node-type-label
Channel: guix
Location: guix/graph.scm (guix graph)
graph-backend-name
Channel: guix
Location: guix/graph.scm (guix graph)
node-type-convert
Channel: guix
Location: guix/graph.scm (guix graph)
vcs-file-predicate (directory)
Channel: guix
Location: guix/hash.scm (guix hash)
Documentation:

Return a two-argument procedure that returns true when version-control metadata directories such as '.git' is found in DIRECTORY.

file-hash* (file #:key algorithm recursive? select?)
Channel: guix
Location: guix/hash.scm (guix hash)
Documentation:

Compute the hash of FILE with ALGORITHM.

Symbolic links are only dereferenced if RECURSIVE? is false. Directories are only supported if RECURSIVE? is #true or 'auto'. The executable bit is only recorded if RECURSIVE? is #true. If FILE is a symbolic link, it is only followed if RECURSIVE? is false.

For regular files, there are two different hashes when the executable hash isn't recorded: the regular hash and the nar hash. In most situations, the regular hash is desired and setting RECURSIVE? to 'auto' does the right thing for both regular files and directories.

This procedure must only be used under controlled circumstances; the detection of symbolic links in FILE is racy.

When FILE is a directory, the procedure SELECT? called as (SELECT? FILE STAT) decides which files to include. By default, version control files are excluded. To include everything, SELECT? can be set to (const #true).

vcs-file? (file stat #:optional vcs-directories)
Channel: guix
Location: guix/hash.scm (guix hash)
Documentation:

Return true if FILE matches a version control system from the list VCSES-DIRECTORIES.

hg-file-name (name version)
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
Documentation:

Return the file-name for packages using hg-download.

hg-predicate (directory)
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
Documentation:

This procedure evaluates to a predicate that reports back whether a given file - stat combination is part of the files tracked by Mercurial.

hg-reference-changeset
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
hg-fetch (ref hash-algo hash #:optional name #:key system guile hg)
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
Documentation:

Return a fixed-output derivation that fetches REF, a <hg-reference> object. The output is expected to have recursive hash HASH of type HASH-ALGO (a symbol). Use NAME as the file name, or a generic name if #f.

hg-reference?
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
hg-reference
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
hg-reference-url
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
hg-version (version revision changeset)
Channel: guix
Location: guix/hg-download.scm (guix hg-download)
Documentation:

Return the version string for packages using hg-download.

http-fetch (uri #:key port text? buffered? open-connection keep-alive? verify-certificate? headers log-port timeout)
Channel: guix
Location: guix/http-client.scm (guix http-client)
Documentation:

Return an input port containing the data at URI, and the HTTP response from the server. If TEXT? is true, the data at URI is considered to be textual. Follow any HTTP redirection. When BUFFERED? is #f, return an unbuffered port, suitable for use in `filtered-port'. HEADERS is an alist of extra HTTP headers.

When KEEP-ALIVE? is true, the connection is marked as 'keep-alive' and PORT is not closed upon completion.

When VERIFY-CERTIFICATE? is true, verify HTTPS server certificates.

TIMEOUT specifies the timeout in seconds for connection establishment; when TIMEOUT is #f, connection establishment never times out.

Write information about redirects to LOG-PORT.

Raise an '&http-get-error' condition if downloading fails.

http-get-error?
Channel: guix
Location: guix/http-client.scm (guix http-client)
http-multiple-get (base-uri proc seed requests #:key port verify-certificate? open-connection keep-alive? batch-size)
Channel: guix
Location: guix/http-client.scm (guix http-client)
Documentation:

Send all of REQUESTS to the server at BASE-URI. Call PROC for each response, passing it the request object, the response, a port from which to read the response body, and the previous result, starting with SEED, à la 'fold'. Return the final result.

When PORT is specified, use it as the initial connection on which HTTP requests are sent; otherwise call OPEN-CONNECTION to open a new connection for a URI. When KEEP-ALIVE? is false, close the connection port before returning.

http-get-error-reason
Channel: guix
Location: guix/http-client.scm (guix http-client)
&http-get-error
Channel: guix
Location: guix/http-client.scm (guix http-client)
http-get-error-uri
Channel: guix
Location: guix/http-client.scm (guix http-client)
http-get-error-code
Channel: guix
Location: guix/http-client.scm (guix http-client)
http-get-error-headers
Channel: guix
Location: guix/http-client.scm (guix http-client)
Total public symbols: 86650