-
- Purescript's `Data.Int` supports between 32 and 53 bits
- Presumably there are some horrible restrictions on floats too
Look at what Aeson does when encoding (I guess it goes silently wrong?)
-
In Gustafson's book (End of Errors), he proposes the basic unum:
```
| signbit | exponent | fraction | ubit | esize-1 | fsize-1 |
```
Discuss: is there a better ordering to these fields to make comm…
-
Nearest neighbour algorithms are an item in the roadmap. They're helpful in clustering algorithms, particularly DBSCAN. There are a number of existing implementations of advanced nearest neighbour alg…
-
Similar to the issue reported in #55584 (and #55749), the [width](https://doc.rust-lang.org/std/fmt/#width) parameter is ignored when displaying enums, e.g. this fails:
```
assert_eq!(&format!("{:…
-
Discussion with @dolio. Currently the new runtime represents unboxed doubles with ints and uses Int comparison when comparing unboxed doubles. Question is whether bitwise casting a Double to an Int an…
-
### Checks
- [X] I have checked that this issue has not already been reported.
- [X] I have confirmed this bug exists on the [latest version](https://pypi.org/project/polars/) of Polars.
### Reprodu…
-
BPO | [43624](https://bugs.python.org/issue43624)
--- | :---
Nosy | @rhettinger, @mdickinson, @vstinner, @ericvsmith, @serhiy-storchaka, @domdfcoding
*Note: these values reflect the state of the issu…
-
Ie. a distance of `1,000,000` fits into `i32`, but squared it will not. Maybe have an associated type for the return value, defaulting to `Point::Scalar`?
-
There some rumours that Decimal128 is silver bullet. But we can construct expression similar to
```
0.1 + 0.2 != 0.3
```
But in another base. This will be fair to add it in readme.
```
1m/3m + …
-
I stumbled upon a quite weird bug concerning the ranging of the y-axis of the Plotter ManagedWindow.
Consider the Following MWE which is the Random number procedure with two additional booleans wh…