-
Read the HTTP API documentation
Scalex is a library intended to be a dependency of an application server like scalex-http
But you can run scalex directly to make it index libraries.
Commands have the following format:
<config_file> <command_name> <command_args>
From sbt console:
> run /path/to/scalex.conf dump arbitrary.package_name /path/to/arbitrary/src
For example, when I index scalaz I run:
> run ./scalex.conf dump scalaz /home/thib/scalaz/core/src
> run ./scalex.conf index
> run ./scalex.conf search list map
* map
collection.immutable.List#map[B]: List[+A] ⇒ (f: (A => B)) ⇒ List[B]
Builds a new collection by applying a function to all elements of this list.
* mapConserve
collection.immutable.List#mapConserve[B<Some(A)>Some(A)]: List[+A] ⇒ (f: (A => B)) ⇒ List[B]
Builds a new list by applying a function to all elements of this list.Like xs map f, but returns xs unchanged if functionf maps all elements to themselves (wrt eq).
* reverseMap
collection.immutable.List#reverseMap[B]: List[+A] ⇒ (f: (A => B)) ⇒ List[B]
Builds a new collection by applying a function to all elements of this list andcollecting the results in reversed order.
A HTTP API is available, see the doc