
30 Dec
2017
30 Dec
'17
2:08 p.m.
Hello cafe, Does a function like `singToList` exist somewhere: singToList :: Sing (xs :: [k]) -> [SomeSing k] singToList = \case SNil -> [] SCons x xs -> SomeSing x : singToList xs ?