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.
Retrieve value of environment variable denoted by string VARIABLE in the form of a list of strings (`char-set:graphic' tokens) suitable for consumption by `args-fold', if VARIABLE is defined, otherwise return an empty list.
Search in FILE for a top-level definition created using DEFINE-PREFIX, with the defined term compared to TERM through PRED. Return the location if PRED returns #t, or #f otherwise.
Is the architecture of TARGET a variant of Intel/AMD's 64-bit architecture (x86_64)?
Is the current system the 64bit GNU(/Hurd) system?
Jump to LINE and COLUMN (both one-indexed) in PORT. Maintain a source location map such that this can boil down to seek(2) and a few read(2) calls, which can drastically speed up repetitive operations on large files.
Compute the Levenshtein distance between two strings.
Return an output port whose input is compressed according to COMPRESSION, a symbol such as 'xz, and then written to OUTPUT. In addition return a list of PIDs to wait for. OPTIONS is a list of strings passed to the compression program--e.g., '("--fast").
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.
Return the source root directory of the Guix found in %load-path.
Return #t when A denotes a version newer or equal to B.
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 "<major>.<minor>", where major and minor are the major and minor version numbers from version-string.
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.
Delete the expression specified by SOURCE-PROPERTIES.
Does the operating system of TARGET use the Linux kernel?
Are we running on a 64bit Hurd? This is almost never the right function, use target-hurd64? or system-hurd64? instead.