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.
Return the extension of FILE or #f if there is none.
Call 'readlink' until the result is not a symlink.
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.
Is the architecture of TARGET a variant of Microchip's AVR architecture?
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")) => ""
Remove all of the keyword arguments listed in KEYWORDS from ARGS.
Call PROC with a name of a temporary directory; close the directory and delete it when leaving the dynamic extent of this call.
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"
Is the current system the GNU(/Hurd) system?
Return the Nix system type corresponding to TRIPLET, a GNU triplet as returned by `config.guess'.
Call PROC with a wrapper around PORT, a file port, that decompresses data read from PORT according to COMPRESSION, a symbol such as 'xz.
Return TARBALL without its .tar.* or .zip extension.
Return the major version number as string from the version-string.
Replace all occurrences of SUBSTR in the START--END range of STR by REPLACEMENT.
Return the Guix package name for a given package NAME.
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.
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
Is the architecture of TARGET a 'riscv64' machine?
Return '> when A denotes a newer version than B, '< when A denotes a older version than B, or '= when they denote equal versions.
Return an input port that wraps PORT such that all newlines consist of a single linefeed.
Does TARGET represent the 64bit GNU(/Hurd) system?