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.
Insert EXPR before the top-level expression specified by SOURCE-PROPERTIES.
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 the substring of FILE without its extension, if any.
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"
Print ROWS in neat columns. All rows should be lists of strings and each row should have the same length. The columns are separated by a tab character, and aligned using spaces. The maximum width of each column is bound by MAX-COLUMN-WIDTH. Each row is prefixed with LEFT-PAD spaces.
Replace all occurrences of SUBSTR in the START--END range of STR by REPLACEMENT.
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.
Is the architecture of TARGET a variant of Intel/AMD's 64-bit architecture (x86_64)?
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")) => ""
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.
Return the Guix package name for a given package NAME.
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 true if POOL doesn't have any task in its queue and all the workers are currently idle (i.e., waiting for a task).
Return a pool of COUNT workers. Use THREAD-NAME as the name of these threads as reported by the operating system.
Enqueue THUNK for future execution by POOL.