Conversation
Bodigrim
force-pushed
the
newtypes
branch
3 times, most recently
from
July 18, 2026 18:43
5ab2ffc to
252ee31
Compare
This module was derived from https://hackage.haskell.org/package/newtype, which predates introduction of `class Coercible` to GHC, a more modern and better known alternative. The `class Newtype` served to provide rather awkward combinators: * `ala :: (Newtype o n, Newtype o' n') => (o -> n) -> ((o -> n) -> b -> n') -> b -> o'` * `alaf :: (Newtype o n, Newtype o' n') => (o -> n) -> ((a -> n) -> b -> n') -> (a -> o) -> b -> o'` * `pack' :: Newtype o n => (o -> n) -> o -> n` * `unpack' :: Newtype o n => (o -> n) -> n -> o` What is awkward about them? All of them completely ignore the first argument and never apply it to the value. The argument serves purely to provide a type annotation in an ancient epoch predating `{-# LANGUAGE TypeApplication #-}`. (Even this could have been done better by using `proxy a b` instead of `(->) a b` in type signatures, to signalize that the argument is not going to be applied to anything). Haskell acquired `class Coercible a b where coerce :: a -> b` after 2011 and by now it is a standard way to deal with newtypes, reducing cognitive overhead for developers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This module was derived from https://hackage.haskell.org/package/newtype, which predates introduction of
class Coercibleto GHC, a more modern and better known alternative.The
class Newtypeserved to provide rather awkward combinators:ala :: (Newtype o n, Newtype o' n') => (o -> n) -> ((o -> n) -> b -> n') -> b -> o'alaf :: (Newtype o n, Newtype o' n') => (o -> n) -> ((a -> n) -> b -> n') -> (a -> o) -> b -> o'pack' :: Newtype o n => (o -> n) -> o -> nunpack' :: Newtype o n => (o -> n) -> n -> oWhat is awkward about them? All of them completely ignore the first argument and never apply it to the value. The argument serves purely to provide a type annotation in an ancient epoch predating
{-# LANGUAGE TypeApplication #-}. (Even this could have been done better by usingproxy a binstead of(->) a bin type signatures, to signalize that the argument is not going to be applied to anything).Haskell acquired
class Coercible a b where coerce :: a -> bafter 2011 and by now it is a standard way to deal with newtypes, reducing cognitive overhead for developers.Please read Github PR Conventions and then fill in one of these two templates.
Template Α: This PR modifies behaviour or interface
significance: significantin the changelog file.