-
-
Notifications
You must be signed in to change notification settings - Fork 0
[RFC]: add ndarray/base/full-by #250
Copy link
Copy link
Open
stdlib-js/stdlib
#11310Labels
FeatureTask to add a new feature.Task to add a new feature.difficulty: 1Low degree of difficulty. Should be straightforward to implement and/or resolve.Low degree of difficulty. Should be straightforward to implement and/or resolve.estimate: 2-4hrsTask which should take between 2 to 4 hours.Task which should take between 2 to 4 hours.🤖 AIAllowed to use AI.Allowed to use AI.
Metadata
Metadata
Assignees
Labels
FeatureTask to add a new feature.Task to add a new feature.difficulty: 1Low degree of difficulty. Should be straightforward to implement and/or resolve.Low degree of difficulty. Should be straightforward to implement and/or resolve.estimate: 2-4hrsTask which should take between 2 to 4 hours.Task which should take between 2 to 4 hours.🤖 AIAllowed to use AI.Allowed to use AI.
This package should be similar to
ndarray/base/fill-by, except it is a creation API and should not pass an array element to a provided callback.API signature:
The callback function should be provided the following arguments:
In which case, the implementation should be roughly
ndarray/base/map, as done inndarray/base/fill-bywithmap( [ x, x ], wrapper, thisArg ).