Changeset 172 for trunk/thune/doc

Show
Ignore:
Timestamp:
06/08/06 01:12:46 (3 years ago)
Author:
krobillard
Message:

Thune - Implemented datatype typemask.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/doc/UserManual

    r168 r172  
    5454unset! 
    5555none!       none 
    56 datatype!   logic! int! 
     56datatype!   logic! int!/decimal! 
    5757logic!      true false 
    5858word!       hello big-time .s 
     
    216216 
    217217 
    218 Contexts 
    219 -------- 
    220  
    221 ==========  ========================  ================= 
    222 Word        Stack Usage               Function 
    223 ==========  ========================  ================= 
    224 set         (val word -- )            Assign value to word. 
    225 get         (word -- val)             Retrieve value referenced by word. 
    226 ==========  ========================  ================= 
    227  
    228  
    229 Context Helpers 
    230 ~~~~~~~~~~~~~~~ 
    231  
    232 ========  =========================  ============================ 
    233 Word      Stack Usage                Function 
    234 ========  =========================  ============================ 
    235 context   (def -- context)           Create context. 
    236 ========  =========================  ============================ 
    237  
    238  
    239218Data Manipulation 
    240219----------------- 
     
    248227type?.word  (val -- word)             Replace value with datatype word. 
    249228is-type?    (val type -- logic)       True if value is of specified type. 
     229set         (val word -- )            Assign value to word. 
     230get         (word -- val)             Retrieve value referenced by word. 
    250231bind        (block ctx -- block)      Bind block to context. 
    251232infuse      (block ctx -- block)      Replace words with context values. 
     
    265246Word        Stack Usage               Function 
    266247==========  ========================  ================= 
     248context     (def -- context)          Create context. 
    267249parse.some  (data rules -- pos)       Parse string or block. 
    268250==========  ========================  =================