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.
Generate a configuration from an association list FIELDS.
SERIALIZE-FIELD is a procedure that takes two arguments, it will be applied on the fields and values of FIELDS using the generic-serialize-alist-entry procedure.
COMBINE is a procedure that takes one or more arguments and combines all the alist entries into one value, string-append or append are usually good candidates for this.
Simplified yaml serializer, which supports only a subset of yaml, use it with caution.
Return a procedure that takes a list and check if all the elements of the list result in #t when applying PRED? on them.
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:
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.
Convert a boolean BOOL to "true" or "false". Setting CAPITALIZE? to #t will capitalize the word, it is set to #f by default.
If A is a list, return it, otherwise return a singleton list with A.
Create an INI configuration from nested lists FIELDS. This uses generic-serialize-ini-config-section and {generic-serialize-alist
Apply the SERIALIZE-FIELD procedure on the field and value of ENTRY.
Convert the object OBJECT to the equivalent string in ``camel case''. STYLE can be three `lower', `upper', defaults to `lower'.
(object->camel-case-string 'variable-name 'upper) ⇒ "VariableName"
Evaluate GEXP G-Expression locally on the caller side.