This file contains 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
{-# LANGUAGE NoFieldSelectors, NamedFieldPuns, DuplicateRecordFields, DerivingStrategies #-} | |
{-# OPTIONS_GHC -Wall #-} | |
module UpdateSections where | |
import Data.List ( mapAccumL ) | |
newtype SectionPos = MkSP Int | |
deriving newtype (Show, Enum) |
This file contains 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
module EvalPolyRec where | |
import Prelude hiding (seq) | |
class Eval a where | |
seq :: a -> b -> b | |
instance Eval (a,b) where | |
seq (_, _) = id |
This file contains 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
{-# LANGUAGE TemplateHaskell, ScopedTypeVariables, TypeInType, TypeOperators, | |
TypeFamilies, GADTs, UndecidableInstances, InstanceSigs #-} | |
{-# OPTIONS_GHC -Wincomplete-patterns #-} | |
import Data.Kind | |
import Data.Singletons.TH | |
import Data.Singletons.Prelude | |
import Prelude hiding ( take ) | |
$(singletons [d| |
This file contains 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
{-# LANGUAGE TypeOperators, TypeFamilies, TypeApplications, | |
ExplicitForAll, ScopedTypeVariables, GADTs, TypeFamilyDependencies, | |
TypeInType, ConstraintKinds, UndecidableInstances, | |
FlexibleInstances, MultiParamTypeClasses, FunctionalDependencies, | |
FlexibleContexts, StandaloneDeriving, InstanceSigs #-} | |
module Basics where | |
import Data.Type.Bool | |
import Data.Type.Equality |
This file contains 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
********************************************** | |
** THIS IS A WARNING MESSAGE ONLY ** | |
** YOU DO NOT NEED TO RESEND YOUR MESSAGE ** | |
********************************************** | |
The original message was received at Fri, 17 Oct 2014 12:34:35 -0400 | |
from c-98-225-220-10.hsd1.pa.comcast.net [98.225.220.10] | |
----- Transcript of session follows ----- | |
<[email protected]>... Deferred: 403 4.7.0 TLS handshake failed. |
This file contains 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
{-# LANGUAGE DataKinds, PolyKinds, GADTs, TypeFamilies, TypeOperators, | |
ConstraintKinds, ScopedTypeVariables, RankNTypes #-} | |
module Shape where | |
import GHC.Exts | |
data a :=: b where | |
Refl :: a :=: a |