Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Sound/Tidal/ID.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ import GHC.Exts ( IsString(..) )
-- | Wrapper for literals that can be coerced to a string and used as an identifier.
-- | Similar to Show typeclass, but constrained to strings and integers and designed
-- | so that similar cases (such as 1 and "1") convert to the same value.
newtype ID = ID { fromID :: String }
newtype ID = ID { fromID :: String } deriving (Eq, Show, Ord, Read)


noOv :: String -> a
noOv meth = error $ meth ++ ": not supported for ids"
Expand Down