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.
Convert a boolean BOOL to "yes" or "no". Setting CAPITALIZE? to #t will capitalize the word, it is set to #f by default.
Create a <package> object that is a wrapper for PACKAGE, and runs GEXP. NAME is the name of the executable that will be put in the store.
Like generic-serialize-ini-config, but the section can also have a subsection. FORMAT-SECTION will take a list of two elements: the section and the subsection.
If A is a list, return it, otherwise return a singleton list with A.
Turn a list LST into a sequence of terms readable by humans. If CUMULATIVE? is #t, use ``and'', otherwise use ``or'' before the last term.
PROC is a procedure to apply to each of the elements of a list before turning them into a single human readable string.
(list->human-readable-list '(1 4 9) #:cumulative? #t #:proc sqrt) ⇒ "1, 2, and 3"
yields:
Like object->string but don't do anything if OBJECT already is a string.
Apply the SERIALIZE-FIELD procedure on the field and value of ENTRY.