We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to add {-# LANGUAGE TypeOperators #-} to the necessary extensions at the beginning of 10.2 on pg. 126.
{-# LANGUAGE TypeOperators #-}
pg. 126
Everything works fine except for MapList pg. 129 and Foldr pg. 130 which depend on a promoted cons operator ': for example:
MapList
pg. 129
Foldr
pg. 130
':
data FoldR :: (a -> b -> Exp b) -> b -> [a] -> Exp b type instance Eval' (FoldR _ z '[]) = z type instance Eval' (FoldR f z (x ': xs)) = Eval' (f x (Eval' (FoldR f z xs)))
I would create a PR myself, but I can't figure out how your TeX preamble is pulling code from your Haskell files
TeX
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Need to add
{-# LANGUAGE TypeOperators #-}
to the necessary extensions at the beginning of 10.2 onpg. 126
.Everything works fine except for
MapList
pg. 129
andFoldr
pg. 130
which depend on a promoted cons operator':
for example:I would create a PR myself, but I can't figure out how your
TeX
preamble is pulling code from your Haskell filesThe text was updated successfully, but these errors were encountered: