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 search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
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
Return TARBALL without its .tar.* or .zip extension.
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".
Return the Guix package name for a given package NAME.
Does TARGET represent the 64bit GNU(/Hurd) system?
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.
Is the current system the 64bit GNU(/Hurd) system?
Does the operating system of TARGET use the Linux kernel?
Return the string from TESTS that is the closest from the TRIAL, according to 'string-distance'. If the TESTS are too far from TRIAL, according to THRESHOLD, then #f is returned.
Compute the Levenshtein distance between two strings.
Return true if FILE denotes a compressed file.
Is the architecture of TARGET a variant of Microchip's AVR architecture?
Is the operating system of TARGET Windows?
Return '> when A denotes a newer version than B, '< when A denotes a older version than B, or '= when they denote equal versions.
Return #t when A denotes a version newer or equal to B.
Return true if POOL doesn't have any task in its queue and all the workers are currently idle (i.e., waiting for a task).
Enqueue THUNK for future execution by POOL.
Return a pool of COUNT workers. Use THREAD-NAME as the name of these threads as reported by the operating system.