Please keep this project alive!
arkanoid87 opened this issue · 1 comments
This project is a milestone for applying functional programming patterns in nim, it deserves some love!
For example, this blocking issue has been upgraded:
nim-lang/Nim#4104
also {.noSideEffect.} and {.raises: [].} can be added where needed to enforce some fp goodness
Thank you for your kind words.
Sadly, I don't really do Nim anymore. Classy was a part of an effort to use Nim at my workplace, one that didn't pan out. I'm not really interested in the language beyond that, so there's little motivation to keep this project moving. I'm still fixing minor things as they are brought to my attention, but there probably won't be any serious development in the foreseeable future. If anyone wants to fork this library and do something useful with it, they are free to do so.
For example, this blocking issue has been upgraded:
From what I remember, it wasn't a blocker as much as a nuisance. The library itself shouldn't need any changes, except for updating documentation.
also {.noSideEffect.} and {.raises: [].} can be added where needed to enforce some fp goodness
If you are talking about adding that into generated code, then I don't think it would be a good idea. These have some heavy ramifications, so it won't do for a glorified template library to force them onto code it doesn't know anything about. If you want pragmas in your typeclass contracts, you can add them manually.