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.
Dump SIZE bytes from INPUT to FILE.
This procedure is suitable for use as the #:dump-file argument to 'restore-file'.
Read a file (possibly a directory structure) in Nar format from PORT. Restore it as FILE with canonical permissions and timestamps. To write a regular or executable file, call:
(DUMP-FILE FILE INPUT SIZE TYPE)
The default is to dump SIZE bytes from INPUT to FILE, but callers can provide a custom procedure, for instance to deduplicate FILE on the fly.
Write the contents of FILE to PORT in Nar format, recursing into sub-directories of FILE as needed.
This procedure does not make any file-system I/O calls. Instead, it calls the user-provided FILE-TYPE+SIZE, FILE-PORT, SYMLINK-TARGET, and DIRECTORY-ENTRIES procedures, which roughly correspond to 'lstat', 'readlink', and 'scandir'. POSTPROCESS-ENTRIES ensures that directory entries are valid; leave it as-is unless you know that DIRECTORY-ENTRIES provide filtered and sorted entries, in which case you can use 'identity'.
Write the contents of FILE to PORT in Nar format, recursing into sub-directories of FILE as needed. For each directory entry, call (SELECT? FILE STAT), where FILE is the entry's absolute file name and STAT is the result of 'lstat'; exclude entries for which SELECT? does not return true.
Read an ISO-8859-1 string from P.
Read a file (possibly a directory structure) in Nar format from PORT. Call PROC on each file or directory read from PORT using:
(PROC FILE TYPE CONTENTS RESULT)
using SEED as the first RESULT. TYPE is a symbol like 'regular, and CONTENTS depends on TYPE.
Copy SIZE bytes from IN to OUT.