-
I have an `enum` like this:
```Rust
enum Format {
UnsignedInt8 = 0,
SignedInt8 = 1,
UnsignedInt16Le = 2,
UnsignedInt16Be = 3,
SignedInt16Le = 4,
SignedInt16Be = 5,
…
-
In trying to wrap a C library in nim, there are a few different ways one can do it:
1) Compile the C library, compile nim files and link statically.
2) Compile the C library, compile nim files and…
-
I am trying to build the second edition of the book. I have copied over the source files from `trpl/second-edition/src` in the TRPL source code repository on Github.
```
nabarun@pal:~/codesl/trpl-…
-
**Is your feature request related to a problem? Please describe.**
Many CSVs, and other data files, have missing data. R typically outputs these as `NA`. NumPy, Pandas &c. also have their own conce…
-
What do people think of this example? I don't think it's great (the `str(name)` etc. grates). However it does validate the JSON (ignoring malformed and extra data -- it's easy to extend it to reject t…
-
### Description of the bug
I'm starting to use v2.0.0 of the nf-core HiC. I used the previous version but always submitted one sample at a time. This time, I created a samplesheet and am running in…
-
### Pandas version 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://pandas.pydata.org/docs/whatsnew/i…
-
This is a tracking issue for the experimental "never patterns" feature (as per the T-lang [experimental feature](https://github.com/rust-lang/lang-team/blob/master/src/how_to/experiment.md) process).
…
-
### Description
Currently, if you have a dictionary `let foo = (bar: "baz")`, you can use `#foo.bar` to retrieve the result `baz`. However, we cannot have `let foo = (bar: () => "baz")` and use `#f…
-
### Initial Checks
- [X] I have searched Google & GitHub for similar requests and couldn't find anything
- [X] I have read and followed [the docs](https://docs.pydantic.dev) and still think this feat…