/usr/share/axiom-20170501/src/algebra/INTABL.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 domain INTABL InnerTable
++ Author: Barry Trager
++ Date Created: 1992
++ Date Last Updated: Sept 15, 1992
++ Description:
++ This domain is used to provide a conditional "add" domain
++ for the implementation of \spadtype{Table}.
InnerTable(Key,Entry,addDom) : SIG == CODE where
Key : SetCategory
Entry : SetCategory
addDom : TableAggregate(Key, Entry) with finiteAggregate
SIG ==> TableAggregate(Key, Entry) with finiteAggregate
CODE ==> addDom
|