-
-
Notifications
You must be signed in to change notification settings - Fork 8
[#14] Add type family to display list of types separated by commas #22
New issue
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
Open
dalpd
wants to merge
1
commit into
kowainik:main
Choose a base branch
from
winkduo:14-comma-separated
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| {-# LANGUAGE TypeFamilies #-} | ||
| {-# LANGUAGE TypeInType #-} | ||
| {-# LANGUAGE TypeOperators #-} | ||
| {-# LANGUAGE UnicodeSyntax #-} | ||
| {-# LANGUAGE UndecidableInstances #-} | ||
| {- | | ||
| Copyright: (c) 2019-2020 Dmitrii Kovanikov | ||
| (c) 2020-2021 Kowainik | ||
| SPDX-License-Identifier: MPL-2.0 | ||
| Maintainer: Dmitrii Kovanikov <kovanikov@gmail.com> | ||
| Kowainik <xrom.xkov@gmail.com> | ||
|
|
||
| This module provides type-level helpers for operations on type-level lists. | ||
| -} | ||
| module Type.Errors.Helpers | ||
| ( -- * Helper type families | ||
| Intercalate, | ||
| ) where | ||
|
|
||
| import GHC.TypeLits | ||
|
|
||
| -- | Internal type family to prepend all the elements of a list, used to | ||
| -- construct `Intersperse`. | ||
| type family PrependToAll (sep :: a) (xs :: [a]) :: [a] where | ||
| PrependToAll _ '[] = '[] | ||
| PrependToAll sep (x ': xs) = sep ': x ': PrependToAll sep xs | ||
|
|
||
| -- | Internal type family to intersperse a list with a given seperator, | ||
| -- type-level version of `Data.List.intersperse`. | ||
| type family Intersperse (sep :: a) (xs :: [a]) :: [a] where | ||
| Intersperse _ '[] = '[] | ||
| Intersperse sep (x ': xs) = x ': PrependToAll sep xs | ||
|
|
||
| -- | Internal type family to concatenate all the type-level symbols in a list. | ||
| type family Concat (xs :: [Symbol]) :: Symbol where | ||
| Concat '[] = "" | ||
| Concat (x:xs) = AppendSymbol x (Concat xs) | ||
|
|
||
| {- | Type family to insert a symbol in between a given list of symbols and concatenate. | ||
|
|
||
| >>> :kind! Intercalate ", " '["Int", "String", "Bool"] | ||
| Intercalate ", " '["Int", "String", "Bool"] :: Symbol | ||
| = "Int, String, Bool" | ||
| -} | ||
| type family Intercalate (x :: Symbol) (xs :: [Symbol]) :: Symbol where | ||
| Intercalate x xs = Concat (Intersperse x xs) |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this approach is not extensible. Users of
type-errors-prettycannot create new instances ofTypeName. And the library cannot provide instances for all types 😞To solve this problem nicely, the
CommaSeparatedtype family can return a type of kindErrorMessageinstead ofSymbol. The type-level operator<>already converts types and type-level symbols to a nice stringified representation that can be later reused in error messages.