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 search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Fold SERVICES by propagating their extensions down to the root of type TARGET-TYPE; return the root service adjusted accordingly.
Return a list containing the elements of lst but with those equal to x deleted. The returned elements will be in the same order as they were in lst.
Equality is determined by pred, or equal? if not given. An equality call is made just once for each element, but the order in which the calls are made on the elements is unspecified.
The equality calls are always (pred x elem), ie.: the given x is first. This means for instance elements greater than 5 can be deleted with (delete 5 lst <).
lst is not modified, but the returned list might share a common tail with lst.
Return as a monadic value the activation script for SERVICE, a service of ACTIVATION-SCRIPT-TYPE.