JuliaMath / JuliaMath/QuadGK.jl
return named tuple (; integral = …, error = …)
- Dominant language
- Julia
- Stars
- 314
- Forks
- 41
- PR merge metrics
- No merged PRs in 30d
Description
Rather than returning a tuple, it would be nice if `quadgk` and friends returned a named tuple `(; integral = …, error = …)`.
This would make the output easier to read, you could do e.g. `quadgk(...).integral` instead of `quadgk(...)[1]`, and it should be mostly backwards compatible because named tuples can also be used just like tuples.
Contributor guide
No contributing guide indexed for this repository
Research direction
Start by locating the `quadgk` entry point and the related “friends” that return tuples. Check existing coverage for tuple-style results, then verify that results expose `.integral` and `.error` while remaining usable with positional tuple access.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- api
- Issue type
- Feature
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 68/100