Haskell type families and dummy arguments
Hi, I made a function similar to numpy's array. It converts lists to arrays, lists of lists to 2d arrays, etc. It works like this: ghci> arrFromNestedLists ["hello", "world"] :: Array (Int, (Int, ())) Char array ((0,(0,())),(1,(4,()))) [((0,(0,())),'h'),((0,(1,())),'e'),((0,(2,())),'l'),((0,(3,())),'l'),((0,(4,())),'o'),((1,(0,())),'w'...