newLISP Fan Club

Forum => newLISP in the real world => Topic started by: newdep on March 01, 2004, 01:19:18 AM

Title: Contexts
Post by: newdep on March 01, 2004, 01:19:18 AM
Hello Lutz,



How can i display all generated namespaces under newlisp? For the GUI-TK version you have this seperated window which contains all known Contexts, in the console mode a function like (contexts) would be very nice to have..



> (contexts)

( MAIN a PERSONS testing )





Regards, Norman.
Title:
Post by: HPW on March 01, 2004, 04:01:03 AM
Hello newdep,



From newLISP-tk.tcl



(filter (lambda (x) (context? (eval x))) (symbols 'MAIN))
Title:
Post by: newdep on March 01, 2004, 04:13:15 AM
Hello HPW,



Aaaa Thanks !!! Ill have a look in the code...

Nifty function btw.. ;-)



Norman.
Title:
Post by: nigelbrown on March 01, 2004, 04:58:20 AM
A variation:

(filter context? (map eval (symbols)))
Title:
Post by: newdep on March 01, 2004, 06:23:44 AM
Thank you for the tips, because i was just looking for  way on how to

get ALL the variables displayed in a context and i did not expect (symbols) to work on context too ;-) nice nice...



Norman.