Jaysukh Makvana

Results 10 issues of Jaysukh Makvana

## Description > What is the purpose of this pull request? This pull request: - Adds the typed array `reduce` method to prototype of `Complex64Array` ## Related Issues > Does...

feature

## Description > What is the purpose of this pull request? This pull request: - Adds the typed array `toLocaleString` method to prototype of `Complex64Array` ## Related Issues > Does...

Feature
Needs Changes

## Description > What is the purpose of this pull request? This pull request: - Adds the typed array `toLocaleString` method to prototype of `Complex128Array` ## Related Issues > Does...

### Description This RFC proposes add or update all packages that needs to be changed in order to add `BooleanArray` support to Stdlib. The purpose of this issue is to...

Tracking Issue

## Description > What is the purpose of this pull request? This pull request: - This PR will add `ndarray/base/mskfilter`. ## Related Issues > Does this pull request have any...

Feature

Caught while compiling `stdlib_ascii` MRE: ```fortran program main implicit none integer :: j character(len=1) :: c c = achar(0) j = iachar(c) print *, j end program main ``` Output:...

stdlib

Needed for `stdlib_logger`. MRE: ```fortran program main integer :: unit = 2 character(12) :: filename, specifier filename = "dummy.txt" open(unit, file=filename, action='readwrite') inquire(unit, write=specifier) if (specifier(1:1) /= 'Y' .and. specifier(1:1)...

stdlib

- While running example of `radix_sort` in `stdlib` sorting package, due to `bin_idx = arr(1)` I am getting code generation failure. Since, GFortran do implicit type promotion and that's why...

stdlib

This code is of insertion sort (stdlib) showing incorrect behaviour for character array. MRE: ```fortran program main implicit none integer, parameter :: int_size = selected_int_kind(8) character(len=4), allocatable :: array(:) integer(int_size)...

stdlib