Dfns workspace: Difference between revisions

Jump to navigation Jump to search
87 bytes added ,  09:28, 25 August 2020
(+example usage)
Line 4: Line 4:


== Example usage ==
== Example usage ==
As with other workspaces, workspace <source lang=text inline>dfns</source> can be copied into the current workspace using [[system command]] <source lang=apl inline>)copy</source>:
As with other workspaces, workspace <source lang=text inline>dfns</source> can be copied into the current workspace using the [[Quad name|system function]] <source lang=apl inline>⎕CY</source>:
<source lang=apl>
<source lang=apl>
       )copy dfns
       ⎕CY'dfns'


       ⍝ Example call: timing an expression using function `cmpx`
       ⍝ Example call: timing an expression using function `cmpx`
Line 12: Line 12:
0.0001302490234375
0.0001302490234375
</source>
</source>
Copying in only one or more specific functions is done by adding a left [[argument]]:
<source lang=apl>
      'dec' 'hex'⎕CY'dfns'


Alternatively, the workspace can be copied using [[Quad name|system function]] <source lang=apl inline>⎕CY</source> (copy workspace):
      hex 1234
04d2
      dec '04d2'
1234
</source>
It can also be used to import the entire workspace into a utility [[namespace]]:
<source lang=apl>
<source lang=apl>
      ⍝ Copy dfns workspace into a namespace called `dfns`
       {(⍎⍵⎕NS⍬).⎕CY ⍵}'dfns'
       {(⍎⍵⎕NS⍬).⎕CY ⍵}'dfns'


Navigation menu