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.
Is the architecture of TARGET a 'riscv64' machine?
Is the architecture of TARGET little-endian?
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.
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.
Does TARGET represent the 64bit GNU(/Hurd) system?
Call PROC with a name of a temporary directory; close the directory and delete it when leaving the dynamic extent of this call.
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?
Remove all of the keyword arguments listed in KEYWORDS from ARGS.
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
Are we running on a Hurd system? This is almost never the right function, use target-hurd? or system-hurd? instead.
Return the source root directory of the Guix found in %load-path.
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 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.
Call 'readlink' until the result is not a symlink.
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 the major version number as string from the version-string.
Does TARGET represent the GNU(/Hurd) system?
Return the shortest version prefix to unambiguously identify VERSION among VERSIONS. For example:
(version-unique-prefix "2.0" '("3.0" "2.0")) => "2"
(version-unique-prefix "2.2" '("3.0.5" "2.0.9" "2.2.7")) => "2.2"
(version-unique-prefix "27.1" '("27.1")) => ""
Is the current system the 64bit GNU(/Hurd) system?