In my Haskell program i have an ADT with many constructors:
data MyData = Con1 |
Con2 |
...
Con20
I have an foreign export ccall function, which wraps [MyData] into array of StablePtr's. After calling it i need to determine which constructor have been used to construct each element.
It could be solved this way
foreign export ccall getType :: StablePtr MyData -> IO CInt
getType (Con1) = return 1
getType (Con2) = return 2
...
but then i would need to manually define these constants in C header. This is error-prone, so i wonder if there is a way to make GHC do this job for me.