peek s -- displays contents of s to depth 1, bypassing installed methods.
i1 : t = set {1,2,3} |
i2 : peek t |
i3 : new MutableHashTable from {a=>3, b=>44} |
i4 : peek oo |
See also:
Class of returned value: Net -- the class of all nets and stringsCode:
-- ../../../Macaulay2/m2/peek.m2:66 peek = s -> peek2(s,1)