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 the extension of FILE or #f if there is none.
Does TARGET represent the 64bit GNU(/Hurd) system?
Are we running on a Hurd system? This is almost never the right function, use target-hurd? or system-hurd? instead.
Return an input port that wraps PORT such that all newlines consist of a single linefeed.
Return true if FILE denotes a compressed file.
Is the architecture of TARGET a variant of Microchip's AVR architecture?
Is the architecture of TARGET a variant of Intel's 32-bit architecture (IA32)?
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
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.
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.
Call PROC with a wrapper around PORT, a file port, that compresses data that goes to PORT according to COMPRESSION, a symbol such as 'xz. OPTIONS is a list of command-line arguments passed to the compression program.
Compute the Levenshtein distance between two strings.
Is the architecture of TARGET little-endian?
Return #t when A denotes a version strictly newer than B.
Return #t if the running Guile version is greater than STR.
Delete the expression specified by SOURCE-PROPERTIES.