Difference between revisions of "CoCoA:Tagged"

From ApCoCoAWiki
(pushing XML rev. 1.46, again)
 
(No difference)

Latest revision as of 10:02, 24 October 2007

Tagged

tag an object for pretty printing

Description

This first function returns the object E, tagged with the string S.

Tagging is used for pretty printing of objects. See the reference

listed below.

Example

  L := [1,2,3];
  M := Tagged(L,<quotes>MyTag</quotes>);
  Type(L);
LIST
-------------------------------
  Type(M);
TAGGED(<quotes>MyTag</quotes>)
-------------------------------
  Type(Untagged(M));
LIST
-------------------------------

Syntax

Tagged(E:OBJECT,S:STRING):TAGGED(S)

Tagged Printing

Tag

Untagged

   <type>io</type>
   <type>printing</type>
   <type>tags</type>