Scott P. Jones

Results 8 issues of Scott P. Jones

In `__iadd__` and `__isub__`, it tests `abs(val) < EQ_TOLERANCE`, yet in `__eq__`, the comparison is ` less than EQ_TOLERANCE

help wanted
area/functionality
area/health
area/python
priority/p2
no QC knowledge needed

I had an idea to add a simple formatter, which could have different methods for different types of values: `sfmt( value [, format [, format arguments] ] )` The reason...

# Description Fixes many issues present in the old Formatting.jl, by replacing with the updated Format.jl

enhancement

The YAML spec (like Julia itself) allows for the underscore character to be used to separate groups of digits, for integers and floats.

bug
good first issue

While investigating an issue with my changes for better performance and to fix numeric parsing issues, I realized that parsing a number can "eat" the next character in a stream....

These macros don't do any interpolation. I could add interpolation (just as I did so for the `f"..."`, `F"..."`, `pr"...."`, and `PR"..."` macros in the StrLiterals.jl package. What do people...

I've written some simple functions that create tables using iconv.jl, and then do the conversions in pure Julia code instead of calling iconv, as well as comparing the performance of...