_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/

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.


graft
Channel: guix
Location: guix/grafts.scm (guix grafts)
%graft?
Channel: guix
Location: guix/grafts.scm (guix grafts)
graft-origin-output
Channel: guix
Location: guix/grafts.scm (guix grafts)
graft-origin
Channel: guix
Location: guix/grafts.scm (guix grafts)
graft?
Channel: guix
Location: guix/grafts.scm (guix grafts)
node-reachable-count (nodes node-edges)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Return the number of nodes reachable from NODES along NODE-EDGES.

node-type-edges
Channel: guix
Location: guix/graph.scm (guix graph)
shortest-path (node1 node2 type)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Return as a monadic value the shortest path, represented as a list, from NODE1 to NODE2 of the given TYPE. Return #f when there is no path.

lookup-backend (name)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Return the graph backend called NAME. Raise an error if it is not found.

node-type-name
Channel: guix
Location: guix/graph.scm (guix graph)
node-edges (type nodes)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Return, as a monadic value, a one-argument procedure that, given a node of TYPE, returns its edges. NODES is taken to be the sinks of the global graph.

node-type-description
Channel: guix
Location: guix/graph.scm (guix graph)
traverse/depth-first (proc seed nodes node-edges)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Do a depth-first traversal of NODES along NODE-EDGES, calling PROC with each node and the current result, and visiting each reachable node exactly once. NODES must be a list of nodes, and NODE-EDGES must be a one-argument procedure as returned by 'node-edges' or 'node-back-edges'.

%d3js-backend
Channel: guix
Location: guix/graph.scm (guix graph)
node-transitive-edges (nodes node-edges)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Return the list of nodes directly or indirectly connected to NODES according to the NODE-EDGES procedure. NODE-EDGES must be a one-argument procedure that, given a node, returns its list of direct dependents; it is typically returned by 'node-edges' or 'node-back-edges'.

%graphviz-backend
Channel: guix
Location: guix/graph.scm (guix graph)
graph-backend?
Channel: guix
Location: guix/graph.scm (guix graph)
node-type-identifier
Channel: guix
Location: guix/graph.scm (guix graph)
export-graph (sinks port #:key reverse-edges? node-type max-depth backend)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Write to PORT the representation of the DAG with the given SINKS, using the given BACKEND. Use NODE-TYPE to traverse the DAG. When REVERSE-EDGES? is true, draw reverse arrows. Do not represent nodes whose distance to one of the SINKS is greater than MAX-DEPTH.

graph-backend-description
Channel: guix
Location: guix/graph.scm (guix graph)
node-type?
Channel: guix
Location: guix/graph.scm (guix graph)
%graph-backends
Channel: guix
Location: guix/graph.scm (guix graph)
graph-backend
Channel: guix
Location: guix/graph.scm (guix graph)
node-back-edges (type nodes)
Channel: guix
Location: guix/graph.scm (guix graph)
Documentation:

Return, as a monadic value, a one-argument procedure that, given a node of TYPE, returns its back edges. NODES is taken to be the sinks of the global graph.

Total public symbols: 86650