Suprit S Jahagirdar
Suprit S Jahagirdar
A few path related functions for ease of future functionality have been added. - `joinpath`: joins the given paths according to the platform's `path-separator`. - `operator(/)`: as was suggested in...
This PR attempts to address #931 interface `stdlib_matmul` is created and extended to handle 3-5 matrices. (works for `integer`, `real`, `complex`) **API** ```fortran A = stdlib_matmul(B, C, D, E, F)...
Attempts to address #973 There was a `subroutine` which would not compile due to this change as procedure pointers cannot point to elemental procedures (according to `gfortran`) and as that...
The PR adds cursor control ANSI escape codes as a separate module `stdlib_ansi_cursor` This was brought up scarcely in #229 but was not really discussed. ## Functions added are 1....
User facing function added is `get_file_size(path [, err])` It returns the file size in bytes. It returns an error if the `path` is a directory or a symlink to a...
User facing functions added are: - `is_abs(path)`: returns a `logical` indicating if the path is absolute. - `abs_path(path [, err])`: returns the absolutized version of the path. `is_abs` does pure...