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

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.


file-extension (file)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return the extension of FILE or #f if there is none.

readlink* (file)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Call 'readlink' until the result is not a symlink.

find-definition-insertion-location (file term #:key define-prefix)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Search in FILE for a top-level definition created using DEFINE-PREFIX, with the defined term alphabetically succeeds TERM. Return the location if found, or #f otherwise.

target-32bit? (#:optional system)
Channel: guix
Location: guix/utils.scm (guix utils)
target-avr? (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Is the architecture of TARGET a variant of Microchip's AVR architecture?

with-environment-variables
Channel: guix
Location: guix/utils.scm (guix utils)
version-unique-prefix (version versions)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return the shortest version prefix to unambiguously identify VERSION among VERSIONS. For example:

(version-unique-prefix "2.0" '("3.0" "2.0")) => "2"

(version-unique-prefix "2.2" '("3.0.5" "2.0.9" "2.2.7")) => "2.2"

(version-unique-prefix "27.1" '("27.1")) => ""

strip-keyword-arguments (keywords args)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Remove all of the keyword arguments listed in KEYWORDS from ARGS.

call-with-temporary-directory (proc)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Call PROC with a name of a temporary directory; close the directory and delete it when leaving the dynamic extent of this call.

version-prefix (version-string num-parts)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Truncate version-string to the first num-parts components of the version. For example, (version-prefix "2.1.47.4.23" 3) returns "2.1.47"

system-hurd? ()
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Is the current system the GNU(/Hurd) system?

gnu-triplet->nix-system (triplet)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return the Nix system type corresponding to TRIPLET, a GNU triplet as returned by `config.guess'.

call-with-decompressed-port (compression port proc)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Call PROC with a wrapper around PORT, a file port, that decompresses data read from PORT according to COMPRESSION, a symbol such as 'xz.

tarball-sans-extension (tarball)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return TARBALL without its .tar.* or .zip extension.

version-major (version-string)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return the major version number as string from the version-string.

string-replace-substring (str substr replacement #:optional start end)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Replace all occurrences of SUBSTR in the START--END range of STR by REPLACEMENT.

target-powerpc? (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
downstream-package-name (prefix name)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return the Guix package name for a given package NAME.

pretty-print-table (rows #:key max-column-width left-pad)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Print ROWS in neat columns. All rows should be lists of strings and each row should have the same length. The columns are separated by a tab character, and aligned using spaces. The maximum width of each column is bound by MAX-COLUMN-WIDTH. Each row is prefixed with LEFT-PAD spaces.

version-prefix?
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return true if V1 is a version prefix of V2:

(version-prefix? "4.1" "4.16.2") => #f (version-prefix? "4.1" "4.1.2") => #t

target-riscv64? (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Is the architecture of TARGET a 'riscv64' machine?

version-compare
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return '> when A denotes a newer version than B, '< when A denotes a older version than B, or '= when they denote equal versions.

canonical-newline-port (port)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return an input port that wraps PORT such that all newlines consist of a single linefeed.

target-hurd64? (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Does TARGET represent the 64bit GNU(/Hurd) system?

Total public symbols: 86650