Jeremie Vandenplas

Results 235 comments of Jeremie Vandenplas

> Then we can keep the PRs open for longer. @certik You summarized nicely my message. Thank you. However, I hope that compiling any branch with `fpm` would result in...

My preference is for a format like Julia 's one. It would be also a similar format as savetxt.

> One prior art - Algorithm 892: DISPMODULE, a Fortran 95 module for pretty-printing matrices > https://dl.acm.org/citation.cfm?id=1486531 > > The code can be downloaded from netlib: http://netlib.org/toms/892.zip Thank you for...

> Taking a peak inside I can say that it would be beneficial to first start work on our own string module to handle conversion of reals/integers/logicals to character strings...

The file `stdlib_stats_var.f90 generated for `fpm` can be found [here](https://github.com/fortran-lang/stdlib/blob/stdlib-fpm/src/stdlib_stats_var.f90). These are indeed spurious warnings (at least the last time I checked).

Needing often hash tables in my work, I am in favor of hash tables ;) I often use a lookup3-based function. Note that standardizing the error codes in stdlib would...

> @jvdp1 I have experimented with lookup3 and could include it. Which version do you use, the single 32 bit integer result or the dual 32 bit integer result? I...

I think it could be good to start with 64 bit hashes. 32 bit hash functions may be implemented later if there is interest, or if it is straighforward ti...

> Generally a thirty two bit hash is simpler than a sixty four bit one. FWIW I want to include a salt (an arbitrary integer of the appropriate kind that...

@wclodius2 Thanks for all these details and implementations. Times look good IMO. Regarding the API, I would implement them as functions too. I don't see the issue with functions and...