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 substring of FILE without its extension, if any.
Are we running on a x86_64 system? This is almost never the right function, use target-x86-64? or system-x86-64? instead.
Return #t if the running Guile version is greater than STR.
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.
Return the major version number as string from the version-string.
Does the operating system of TARGET use the Linux kernel?
Return "major>.<minor>.<point>", where major, minor and point are the major, minor and point version numbers from the version-string. For example, (version-major+minor+point "6.4.5.2") returns "6.4.5" or (version-major+minor+point "1.19.2-2581-324ca14c3003") returns "1.19.2".
Call PROC with a wrapper around PORT, a file port, that decompresses data read from PORT according to COMPRESSION, a symbol such as 'xz.
Return the source root directory of the Guix found in %load-path.
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
Is the architecture of TARGET little-endian?
Return '> when A denotes a newer version than B, '< when A denotes a older version than B, or '= when they denote equal versions.
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.
Replace all occurrences of SUBSTR in the START--END range of STR by REPLACEMENT.
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"
Is the operating system of TARGET Windows?