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.
Returns a procedure that is the conjuction of every predicate in PREDICATES. The returned procedure takes an arbitrary number of arguments, and returns #t if these arguments satisfy every other predicate in PREDICATES.
Returns a procedure that is the juxtaposition of it's argument procedures. The returned procedure takes a variable number of args, and returns a list containing the result of applying each procedure to the args (left-to-right).
Returns a procedure that takes a list LST and returns #t if every other element of LST satisfies PRED.
Returns a procedure that applies PROC to the reverse of ARGS.
Returns a procedure that receives MORE-ARGS applies PROC to the list obtained by appending ARGS to MORE-ARGS.
Returns a procedure that is the disjunction of every predicate in PREDICATES. The returned procedure takes an arbitrary number of arguments, and returns #t if these arguments satisfy exactly one predicate in PREDICATES, and #f otherwise.
Returns a procedure that takes a list LST and returns #t if any element of LST satisfies PRED.
Returns a procedure that takes ARG1, ARG2 and optionally more args, and applies PROC to the list obtained by cons*ing ARG2 ARG1 to ARG2 to the list of aditional arguments.
Returns a procedure that is the inclusive disjunction of every predicate in PREDICATES. The returned procedure takes an arbitrary number of arguments, and returns #t if these arguments satifsy at least one predicate in PREDICATES, and #f otherwise.
Returns a procedure that applies PROC1 to the to the map of PROC2 to ARGS.