summaryrefslogtreecommitdiff
path: root/src/Sequence
diff options
context:
space:
mode:
Diffstat (limited to 'src/Sequence')
-rw-r--r--src/Sequence/Formula.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Sequence/Formula.hs b/src/Sequence/Formula.hs
index 9000c58..d486bab 100644
--- a/src/Sequence/Formula.hs
+++ b/src/Sequence/Formula.hs
@@ -46,6 +46,9 @@ instance a :<: (a, b) where
46instance a :<: (b, a) where 46instance a :<: (b, a) where
47 ctx' = _2 47 ctx' = _2
48 48
49instance () :<: a where
50 ctx' = united
51
49data Context small = forall large. (small :<: large) => Context large 52data Context small = forall large. (small :<: large) => Context large
50 53
51ctx :: Traversal' (Context input) input 54ctx :: Traversal' (Context input) input