Aman Godara
Aman Godara
This is what was proposed in the proposal for GSoC. This was designed with an aim to provide as much functionalities as possible to a user. It might vary from...
I wasn't able to explain myself in the best possible manner, excuse me for that. By **truncate** I was referring to the case when a user gives something like this:...
I think there's a need to re run the workflow. Error: says couldn't find `stdlib_optval`.
I think even after re-running the workflow, it gave the same error.
Any reason why test cases won't pass specifically for **macos** compiler. I rechecked everything many times but couldn't find any error in logic, I wanted to know if I am...
As per my analysis: call number 14 to function **compare_list** is failing because: `work_list`
@jvdp1 Thanks for contacting. PR is stuck here, I tried many different things. I have mentioned the details of the problem [here](https://github.com/fortran-lang/stdlib/pull/552#issuecomment-945098369). I am planning to make these test cases...
Any luck? @jvdp1
`delete` function vs `remove` function? `delete` functions returns the deleted element. `remove` function does same job as to `delete` function but doesn't return the deleted element. Any suggestions on better...
Python uses `pop` (returns deleted item) and `remove` (no return) Java doesn't have any function equivalent of `pop` (or atleast I couldn't find one), it has `remove` function (no return)....