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 Nix system type corresponding to TRIPLET, a GNU triplet as returned by `config.guess'.
Return '> when A denotes a newer version than B, '< when A denotes a older version than B, or '= when they denote equal versions.
Is the current system the GNU(/Hurd) system?
Return "<major>.<minor>", where major and minor are the major and minor version numbers from version-string.
Does TARGET represent the 32bit GNU(/Hurd) system?
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)
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)?
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 decompresses data read from PORT according to COMPRESSION, a symbol such as 'xz.
Is the architecture of TARGET a variant of Intel/AMD's 64-bit architecture (x86_64)?
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").
Return true if FILE denotes a compressed file.
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.
Insert EXPR before the top-level expression specified by SOURCE-PROPERTIES.