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

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-aarch64? (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
target-arm? (#:optional target)
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")) => ""

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.

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

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

with-environment-variables
Channel: guix
Location: guix/utils.scm (guix utils)
target-mips64el? (#:optional target)
Channel: guix
Location: guix/utils.scm (guix utils)
version>? (a b)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Return #t when A denotes a version strictly newer than B.

insert-expression (source-properties expr)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Insert EXPR before the top-level expression specified by SOURCE-PROPERTIES.

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

Return a guess of the GNU triplet corresponding to Nix system identifier SYSTEM.

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.

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.

edit-expression (source-properties proc #:key encoding include-trailing-newline?)
Channel: guix
Location: guix/utils.scm (guix utils)
Documentation:

Edit the expression specified by SOURCE-PROPERTIES using PROC, which should be a procedure that takes the original expression in string and returns a new one. ENCODING will be used to interpret all port I/O, it defaults to UTF-8. This procedure returns #t on success. When INCLUDE-TRAILING-NEWLINE? is true, the trailing line is included in the edited expression.

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

Is the architecture of TARGET a variant of Intel/AMD's 64-bit architecture (x86_64) using 32-bit data types?

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

Is TARGET a BPF (Berkeley Packet Filter) virtual machine target?

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

Is the operating system of TARGET Windows?

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

Compute the Levenshtein distance between two strings.

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

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

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

Is the architecture of TARGET a variant of Intel/AMD's 64-bit architecture (x86_64)?

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.

Total public symbols: 88154