Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

documents for J standard library stdlib.ijs

Tags:

j

is there a detailed document or commented version of J's stdlib.ijs? The Jwiki link does not include much. Are functions in stdlib.ijs for user use or only intended for internal use?

The local installation of copy stdlib.ijs has much more functions than the onlline version.

like image 396
ahala Avatar asked Aug 15 '26 02:08

ahala


2 Answers

Have you opened up stdlib.ijs in the online Subversion repository? It has fairly generous commenting. For example, this is the entry for boxopen:

NB. =========================================================
NB.*boxopen v box argument if open
NB.-Box argument if open.
NB.- e.g. if script=: 0!:0 @ boxopen, then either
NB.-   script 'work.ijs'  or  script <'work.ijs'
NB.-
NB.-See also [boxxopen](boxxopen).
NB.-
NB.-Use [cutopen](#cutopen) to allow multiple arguments.
boxopen=: <^:(L.=0:)

That said, I wouldn't mind a better reference myself.

like image 154
Dane Avatar answered Aug 18 '26 15:08

Dane


According to the J mailinglist,

Documentation of standard library of J8 is now available as a chapter of the J User manual,

  • http://www.jsoftware.com/help/user/library.htm

which is also part of the docs/help addons.

like image 37
ahala Avatar answered Aug 18 '26 14:08

ahala