|  |  5.1.102 names 
See
 nameof;
 reservedName.Syntax:names ( )
 names (ring_name)
 names (package_name)
 names (level)Type:list of strings
Purpose:returns the names of all user-defined variables which are ring independent
(this includes the names of  procedures) or, in the second case, which
belong to the given ring.
The third case restricts the variables to the given level.
package_name can be Current,Topor any other
identifier of type package.Example:|  |   int i=9;
  ring r;
  poly f;
  package p;
  int j; exportto(p,j);
  poly g;
  setring r;
  list l=names();
  l[1..3];
==> l p r
  names(r);
==> [1]:
==>    g
==> [2]:
==>    f
  names(p);
==> [1]:
==>    j
  names(0);
==> [1]:
==>    l
==> [2]:
==>    p
==> [3]:
==>    r
==> [4]:
==>    i
==> [5]:
==>    mathicgb_prOrder
==> [6]:
==>    mathicgb
==> [7]:
==>    Singmathic
==> [8]:
==>    create_ring
==> [9]:
==>    min
==> [10]:
==>    max
==> [11]:
==>    datetime
==> [12]:
==>    weightKB
==> [13]:
==>    fprintf
==> [14]:
==>    printf
==> [15]:
==>    sprintf
==> [16]:
==>    quotient4
==> [17]:
==>    quotient5
==> [18]:
==>    quotient3
==> [19]:
==>    quotient2
==> [20]:
==>    quotient1
==> [21]:
==>    quot
==> [22]:
==>    res
==> [23]:
==>    groebner
==> [24]:
==>    qslimgb
==> [25]:
==>    hilbRing
==> [26]:
==>    par2varRing
==> [27]:
==>    quotientList
==> [28]:
==>    stdhilb
==> [29]:
==>    stdfglm
==> [30]:
==>    Standard
==> [31]:
==>    flintZn
==> [32]:
==>    flintQ
==> [33]:
==>    flintQp
==> [34]:
==>    Float
==> [35]:
==>    crossprod
==> [36]:
==>    ZZ
==> [37]:
==>    QQ
==> [38]:
==>    Top
 | 
 |