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 Nix system type corresponding to TRIPLET, a GNU triplet as returned by `config.guess'.
Force the keywords arguments KW/VALUES in the keyword argument list ARGS. For instance:
(ensure-keyword-arguments '(#:foo 2) '(#:foo 2)) => (#:foo 2)
(ensure-keyword-arguments '(#:foo 2) '(#:bar 3)) => (#:foo 2 #:bar 3)
(ensure-keyword-arguments '(#:foo 2) '(#:bar 3 #:foo 42)) => (#:foo 42 #:bar 3)
Is the current system the 64bit GNU(/Hurd) system?
Return an input port where data drained from INPUT is filtered through COMMAND (a list). In addition, return a list of PIDs that the caller must wait. When INPUT is a file port, it must be unbuffered; otherwise, any buffered data is lost.
Are we running on a Hurd system? This is almost never the right function, use target-hurd? or system-hurd? instead.
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"
Call 'readlink' until the result is not a symlink.
Is the architecture of TARGET a variant of Microchip's AVR architecture?
Call PROC with an output port for the file that is going to replace FILE. Upon success, FILE is atomically replaced by what has been written to the output port, and PROC's result is returned.
When SYNC? is true, call 'fdatasync' on the temporary file before renaming it to FILE; set it to #false for caches and temporary files to improve performance.
Return the extension of FILE or #f if there is none.
Call PROC with a wrapper around PORT, a file port, that decompresses data read from PORT according to COMPRESSION, a symbol such as 'xz.
Is the architecture of TARGET a 'riscv64' machine?
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.