<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic get symbols() in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/get-symbols/m-p/926006#M108403</link>
    <description>&lt;P&gt;In JSL, there is a function &lt;FONT face="courier new,courier"&gt;get namespaces()&lt;/FONT&gt; to get al ist of all namespaces with all defined symbols.&lt;/P&gt;
&lt;P&gt;... and a function &lt;FONT face="courier new,courier"&gt;show symbols()&lt;/FONT&gt; to show all symbols of all namespaces : print to log.&lt;/P&gt;
&lt;P&gt;is there something like &lt;FONT face="courier new,courier"&gt;get symbols()&lt;/FONT&gt;, to get the list of symbols as a return value?&lt;/P&gt;</description>
    <pubDate>Sun, 25 Jan 2026 20:07:23 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2026-01-25T20:07:23Z</dc:date>
    <item>
      <title>get symbols()</title>
      <link>https://community.jmp.com/t5/Discussions/get-symbols/m-p/926006#M108403</link>
      <description>&lt;P&gt;In JSL, there is a function &lt;FONT face="courier new,courier"&gt;get namespaces()&lt;/FONT&gt; to get al ist of all namespaces with all defined symbols.&lt;/P&gt;
&lt;P&gt;... and a function &lt;FONT face="courier new,courier"&gt;show symbols()&lt;/FONT&gt; to show all symbols of all namespaces : print to log.&lt;/P&gt;
&lt;P&gt;is there something like &lt;FONT face="courier new,courier"&gt;get symbols()&lt;/FONT&gt;, to get the list of symbols as a return value?&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jan 2026 20:07:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/get-symbols/m-p/926006#M108403</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-25T20:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: get symbols()</title>
      <link>https://community.jmp.com/t5/Discussions/get-symbols/m-p/926071#M108409</link>
      <description>&lt;P&gt;You will most likely have to write your own function to collect the symbols which might be quite simple to do, depending on what you are trying to do it the end.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 07:43:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/get-symbols/m-p/926071#M108409</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-01-26T07:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: get symbols()</title>
      <link>https://community.jmp.com/t5/Discussions/get-symbols/m-p/926073#M108410</link>
      <description>&lt;P&gt;ok, thanks. I hoped there was a function ...&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;get symbols = Function( {},
	{default local},
	Names Default To Here( 1 );
	nsNames = Get Namespace Names();
	Insert Into( nsNames, "global" );
	allSymbols = Transform Each( {NS}, nsNames,
		tmp = Associative Array();
		tmp["NS"] = NS;
		tmp["content"] = Namespace( NS ) &amp;lt;&amp;lt; get contents;
		tmp;
	);
	allSymbols
);
get symbols()&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Jan 2026 10:08:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/get-symbols/m-p/926073#M108410</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-26T10:08:35Z</dc:date>
    </item>
  </channel>
</rss>

