Re: Arraymancer - v0.4.0 (May 2018)

2019-01-13 Thread itm
Something I read about today, another approach to implementing tensors... [http://nlp.seas.harvard.edu/NamedTensor](http://nlp.seas.harvard.edu/NamedTensor)

Re: What pattern language does the OS module use ?

2018-12-22 Thread itm
This issue is resolved. I realized that Nim uses platform-specific pattern matching for filenames. This depends on the OS in use. In this case the Windows CLI has several quirks in the way it uses wildcards (*, ? etc.) for matching filenames. These quirks seem to have been inherited from the e

Re: What pattern language does the OS module use ?

2018-12-20 Thread itm
Note: Please overlook the irregular formatting of some lines with bold and highlights above. I struggled with RST editor, and then gave up about formatting altogether. Perhaps Nim forum needs a more newbie friendly editor, IMO...

What pattern language does the OS module use ?

2018-12-20 Thread itm
The iterators in the OS module such as walkFiles use a filename pattern as input. The OS module documentation says: iterator walkFiles(pattern: string): string Iterate over all the files that match the pattern. What sort of pattern language is used for the pattern string ? I have the follo