- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
clear all variables in the here namespace
is there any way to delete the here namespace? Or more to the point, all the variables in it without knowing the variable names?
namespace("here") << Delete
doesn't seem to work. I could << Get contents and for through it, but I'm just wondering if there's a better way.
Vince Faller - Predictum
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: clear all variables in the here namespace
Created:
Jan 20, 2017 04:35 PM
| Last Modified: Jan 20, 2017 1:39 PM
(16229 views)
| Posted in reply to message from vince_faller 01-20-2017
Does this work:
namespace("here")<<remove(namespace("here")<<getkeys);
At least you don't have to for through it.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: clear all variables in the here namespace
See if this will do what you want:
Names Default To Here( 1 );
x=44;
show(here:x);
clear symbols();
show(here:x);
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: clear all variables in the here namespace
nah, I want only the here namespace to be deleted (even more than cleared really)
::y = 14;
Names Default To Here( 1 );
x=44;
show(here:x);
show(::y);
delete symbols();
show(::y);
Vince Faller - Predictum
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: clear all variables in the here namespace
Created:
Jan 20, 2017 04:35 PM
| Last Modified: Jan 20, 2017 1:39 PM
(16230 views)
| Posted in reply to message from vince_faller 01-20-2017
Does this work:
namespace("here")<<remove(namespace("here")<<getkeys);
At least you don't have to for through it.