/usr/share/axiom-20170501/src/algebra/OPQUERY.spad is in axiom-source 20170501-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | )abbrev package OPQUERY OperationsQuery
++ Description:
++ This package exports tools to create AXIOM Library information databases.
OperationsQuery() : SIG == CODE where
SIG ==> with
getDatabase : String -> Database(IndexCard)
++ getDatabase("char") returns a list of appropriate entries in the
++ browser database. The legal values for "char" are "o" (operations),
++ "k" (constructors), "d" (domains), "c" (categories) or "p" (packages).
CODE ==> add
getDatabase(s) == getBrowseDatabase(s)$Lisp
|