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

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.


%java-source-dirs
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
%clojure-regex
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
relative-path->clojure-lib-string (path)
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
Documentation:

Convert PATH to a clojure library string.

compiled-from? (class lib)
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
Documentation:

Given class file CLASS and clojure library symbol LIB, decide if CLASS results from compiling LIB.

%compile-dir
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
%test-exclude
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
canonicalize-relative-path
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
%aot-exclude
Channel: guix
Location: guix/build/clojure-utils.scm (guix build clojure-utils)
cmake-build (#:key inputs phases . args)
Channel: guix
Location: guix/build/cmake-build-system.scm (guix build cmake-build-system)
Documentation:

Build the given package, applying all of PHASES in order.

%standard-phases
Channel: guix
Location: guix/build/cmake-build-system.scm (guix build cmake-build-system)
compile-files (source-directory build-directory files #:key host workers optimization-options warning-options report-load report-compilation debug-port)
Channel: guix
Location: guix/build/compile.scm (guix build compile)
Documentation:

Compile FILES, a list of source files taken from SOURCE-DIRECTORY, to BUILD-DIRECTORY, using up to WORKERS parallel workers. The resulting object files are for HOST, a GNU triplet such as "x86_64-linux-gnu".

composer-build (#:key inputs phases . args)
Channel: guix
Location: guix/build/composer-build-system.scm (guix build composer-build-system)
Documentation:

Build the given package, applying all of PHASES in order.

%standard-phases
Channel: guix
Location: guix/build/composer-build-system.scm (guix build composer-build-system)
copy-build (#:key inputs phases . args)
Channel: guix
Location: guix/build/copy-build-system.scm (guix build copy-build-system)
Documentation:

Build the given package, applying all of PHASES in order.

%standard-phases
Channel: guix
Location: guix/build/copy-build-system.scm (guix build copy-build-system)
cvs-fetch (cvs-root-directory module revision directory #:key cvs-command)
Channel: guix
Location: guix/build/cvs.scm (guix build cvs)
Documentation:

Fetch REVISION from MODULE of CVS-ROOT-DIRECTORY into DIRECTORY. REVISION must either be a date in ISO-8601 format (e.g. "2012-12-21") or a CVS tag. Return #t on success, #f otherwise.

debuglink-crc32 (port)
Channel: guix
Location: guix/build/debug-link.scm (guix build debug-link)
Documentation:

Compute the 32-bit CRC used in in '.gnu_debuglink' over the data read from PORT and return it.

elf-debuglink (elf)
Channel: guix
Location: guix/build/debug-link.scm (guix build debug-link)
Documentation:

Return two values: the '.gnu_debuglink' file name of ELF and its CRC. Return #f for both if ELF lacks a '.gnu_debuglink' section.

set-debuglink-crc (file debug-file)
Channel: guix
Location: guix/build/debug-link.scm (guix build debug-link)
Documentation:

Compute the CRC of DEBUG-FILE and set it as the '.gnu_debuglink' CRC in FILE.

graft-debug-links (old-outputs new-outputs mapping #:key log-port)
Channel: guix
Location: guix/build/debug-link.scm (guix build debug-link)
Documentation:

Update the '.gnu_debuglink' CRCs found in ELF files of NEW-OUTPUTS, provided NEW-OUTPUTS contains a "debug" output, such that those CRCs match those of the corresponding '.debug' files found in the "debug" output.

This procedure is meant to be used as a "grafting hook" by (guix build graft).

download-nar (item #:optional output #:key verify-certificate?)
Channel: guix
Location: guix/build/download-nar.scm (guix build download-nar)
Documentation:

Download and extract to OUTPUT the normalized archive for ITEM, a store item. Return #t on success, #f otherwise. HTTPS certificates are verified when (and only when) VERIFY-CERTIFICATE? is true.

http-fetch (uri #:key timeout verify-certificate?)
Channel: guix
Location: guix/build/download.scm (guix build download)
Documentation:

Return an input port containing the data at URI, and the expected number of bytes available or #f. When TIMEOUT is true, bail out if the connection could not be established in less than TIMEOUT seconds. When VERIFY-CERTIFICATE? is true, verify HTTPS certificates; otherwise simply ignore them.

url-fetch (url file #:key timeout verify-certificate? mirrors content-addressed-mirrors disarchive-mirrors hashes print-build-trace?)
Channel: guix
Location: guix/build/download.scm (guix build download)
Documentation:

Fetch FILE from URL; URL may be either a single string, or a list of string denoting alternate URLs for FILE. Return #f on failure, and FILE on success.

When MIRRORS is defined, it must be an alist of mirrors; it is used to resolve 'mirror://' URIs.

HASHES must be a list of algorithm/hash pairs, where each algorithm is a symbol such as 'sha256 and each hash is a bytevector. CONTENT-ADDRESSED-MIRRORS must be a list of procedures that, given a hash algorithm and a hash, return a URL where the specified data can be retrieved or #f.

When VERIFY-CERTIFICATE? is true, validate HTTPS server certificates; otherwise simply ignore them.

resolve-uri-reference (ref base)
Channel: guix
Location: guix/build/download.scm (guix build download)
Documentation:

Resolve the URI reference REF, interpreted relative to the BASE URI, into a target URI, according to the algorithm specified in RFC 3986 section 5.2.2. Return the resulting target URI.

Total public symbols: 86650