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 current system the 64bit GNU(/Hurd) system?
Return the Guix package name for a given package NAME.
Return true if FILE denotes a compressed file.
Remove all of the keyword arguments listed in KEYWORDS from ARGS.
Are we running on a Hurd system? This is almost never the right function, use target-hurd? or system-hurd? instead.
Is the architecture of TARGET a variant of Intel/AMD's 64-bit architecture (x86_64)?
Is the architecture of TARGET a variant of Intel's 32-bit architecture (IA32)?
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.
Jump to LINE and COLUMN (both one-indexed) in PORT. Maintain a source location map such that this can boil down to seek(2) and a few read(2) calls, which can drastically speed up repetitive operations on large files.
Return #t when A denotes a version strictly newer than B.
Does TARGET represent the 64bit GNU(/Hurd) system?
Return #t when A denotes a version newer or equal to B.
Force the keywords arguments KW/VALUES in the keyword argument list ARGS. For instance:
(ensure-keyword-arguments '(#:foo 2) '(#:foo 2)) => (#:foo 2)
(ensure-keyword-arguments '(#:foo 2) '(#:bar 3)) => (#:foo 2 #:bar 3)
(ensure-keyword-arguments '(#:foo 2) '(#:bar 3 #:foo 42)) => (#:foo 42 #:bar 3)
Return an output port whose input is compressed according to COMPRESSION, a symbol such as 'xz, and then written to OUTPUT. In addition return a list of PIDs to wait for. OPTIONS is a list of strings passed to the compression program--e.g., '("--fast").
Is the current system the GNU(/Hurd) system?
Is the architecture of TARGET a variant of Microchip's AVR architecture?
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 architecture of TARGET a 'riscv64' machine?