|
A tool to query analysis information about entities (e.g., function, types, type classes) defined in a module of some Curry package.
To use the tool to show information about some function, run
> cpm-query <module name> <function name>
Note that cypm exec
is not necessary to invoke the tool since
the load path is computed by this tool. For instance, try
> cpm-query Data.List split > cpm-query System.Process exitWith > cpm-query System.Directory doesFileExist
Version: December 2024
main
:: IO ()
|
askCurryInfoServer
:: String -> CurryEntity -> String -> IO (Maybe [((String,String),String)])
This action starts curry-info
in server mode and returns the result
of the given request (third argument) for all operations in the module
provided as the first argument.
|
askCurryInfoCmd
:: String -> CurryEntity -> String -> IO (Maybe [((String,String),String)])
This action uses the curry-info
command to return the result
of the given request (third argument) for all operations in the module
provided as the first argument.
|
|
This action starts The package and version are determined using the Curry loadpath. If something goes wrong, Nothing is returned.
|
This action uses the The package and version are determined using the Curry loadpath. If something goes wrong, Nothing is returned.
|