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

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.


target-64bit? (#:optional system)
Channel: guix
Location: guix/utils.scm (guix utils)
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

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

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

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

Return "major>.<minor>.<point>", where major, minor and point are the major, minor and point version numbers from the version-string. For example, (version-major+minor+point "6.4.5.2") returns "6.4.5" or (version-major+minor+point "1.19.2-2581-324ca14c3003") returns "1.19.2".

target-mips64el? (#: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.

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

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

call-with-compressed-output-port (compression port proc #:key options)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Call PROC with a wrapper around PORT, a file port, that compresses data that goes to PORT according to COMPRESSION, a symbol such as 'xz. OPTIONS is a list of command-line arguments passed to the compression program.

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

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

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

Does the operating system of TARGET use the Linux kernel?

string-closest (trial tests #:key threshold)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return the string from TESTS that is the closest from the TRIAL, according to 'string-distance'. If the TESTS are too far from TRIAL, according to THRESHOLD, then #f is returned.

string-distance (s1 s2)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Compute the Levenshtein distance between two strings.

as-for-target (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
compressed-file? (file)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return true if FILE denotes a compressed file.

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?

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

Is the operating system of TARGET Windows?

ar-for-target (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
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.

version>=? (a b)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return #t when A denotes a version newer or equal to B.

pool-idle? (pool)
Channel: guix
Location: guix/workers.scm (guix workers)
Documentation:

Return true if POOL doesn't have any task in its queue and all the workers are currently idle (i.e., waiting for a task).

eventually
Channel: guix
Location: guix/workers.scm (guix workers)
pool-enqueue! (pool thunk)
Channel: guix
Location: guix/workers.scm (guix workers)
Documentation:

Enqueue THUNK for future execution by POOL.

pool?
Channel: guix
Location: guix/workers.scm (guix workers)
make-pool (#:optional count #:key thread-name)
Channel: guix
Location: guix/workers.scm (guix workers)
Documentation:

Return a pool of COUNT workers. Use THREAD-NAME as the name of these threads as reported by the operating system.

Page: 1340934103411
Total public symbols: 81864