Nathan Ringo

Results 33 comments of Nathan Ringo

So it doesn't work with the "normal" `cabal install` though, right? Thanks!

I meant `cabal install `, where it downloads it from the web. I'm used to `pip`, `npm`, etc. where the tool automates the pull step for you, but if I...

I'm using this so I can call a trait method on an HList of values that all belong to the same trait. The specific code is here: https://github.com/remexre/csci5607-game/blob/75103f761dba59cbe2f67980cadf53a94df5e4ca/src/main.rs#L71-L73 https://github.com/remexre/csci5607-game/blob/75103f761dba59cbe2f67980cadf53a94df5e4ca/src/lib.rs#L53-L75 There's...

I need to add examples+tests still; it's finals week here so I'm gonna be a bit busy until the 19th or 20th; I should be able to do them then,...

Not any specific thing, I just get errors from mypy about it not having type annotations.

My use case is for a program with a separate modes for editing content and displaying it. I'd like something like ``` Program.jar [display] [files...] Program.jar verify [--modify] [--strict] Program.jar...

Did anyone figure anything out here? I'm in the same situation (with a virtually identical UserState, too)

Without `ManuallyDrop`, the original value still gets dropped at the end of the scope, leading to e.g. double-frees.

Either one could work.