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 webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Return #t if PROG is a program that was moved and wrapped by 'wrap-program'.
Return the directory name of the store.
Return true if FILE starts with the right magic bytes.
Replace the #! interpreter file name in FILE by a valid one found in PATH, when FILE actually starts with a shebang. Return #t when FILE was patched, #f otherwise. When KEEP-MTIME? is true, the atime/mtime of FILE are kept unchanged.
Set the atime/mtime of FILE to that specified by STAT.
Strip the '/gnu/store' and hash from FILE, a store file name. The result is typically a "PACKAGE-VERSION" string.
Make FILE writable for its owner.
Given NAME, a package name like "foo-0.9.1b", return two values: "foo" and "0.9.1b". When the version part is unavailable, NAME and #f are returned. The first hyphen followed by a digit is considered to introduce the version part.
Replace the first pair in ALIST whose car is KEY with the KEY/VALUE pair. An error is raised when no such pair exists.
Return true if FILE is in the store.
Return #t if FILE is a symbolic link (aka. "symlink".)
Call PROC with two arguments: an input port for FILE, and 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.
Create a desktop entry file at DESTINATION. You must specify NAME.
Values can be booleans, numbers, strings or list of strings.
Additionally, locales can be specified with an alist where the key is the locale. The #f key specifies the default. Example:
#:name '((#f "I love Guix") ("fr" "J'aime Guix"))
produces
Name=I love Guix Name[fr]=J'aime Guix
For a complete description of the format, see the specifications at https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html.
Insert the KEY/VALUE pair after the first occurrence of a pair whose key is REFERENCE in ALIST. Use KEY=? to compare keys. An error is raised when no such pair exists.
If FILE is a gzip file, reset its embedded timestamp (as with 'gzip --no-name') and return true. Otherwise return #f. When KEEP-MTIME? is true, preserve FILE's modification time.
Read from PORT character-by-character; for each match against PATTERN, call (PROC MATCH RESULT), where RESULT is seeded with INIT. PATTERN is a list of SRFI-14 char-sets. Call (UNMATCHED CHAR RESULT) for each unmatched character.