Macaulay2 » Documentation
Packages » Macaulay2Doc :: showUserStructure
next | previous | forward | backward | up | index | toc

showUserStructure -- show parent structure for those types defined by user

Synopsis

Description

Each type is displayed to the right of its parent.

A type is an instance of the class Type.

i1 : R = QQ[x,y]

o1 = R

o1 : PolynomialRing
i2 : X = new Type of List

o2 = X

o2 : Type
i3 : Y = new Type of X

o3 = Y

o3 : Type
i4 : Z = new Type of X

o4 = Z

o4 : Type
i5 : showUserStructure

o5 = Thing : BasicList : RingElement : R
                         VisibleList : List : X : Y
                                                  Z

o5 : Descent

See also

For the programmer

The object showUserStructure is a command.