File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,8 @@ New modules
103
103
104
104
* ` Data.List.Base.{sum|product} ` and their properties have been lifted out into ` Data.Nat.ListAction ` and ` Data.Nat.ListAction.Properties ` .
105
105
106
+ * ` Data.Sign.Show ` to show a sign
107
+
106
108
Additions to existing modules
107
109
-----------------------------
108
110
Original file line number Diff line number Diff line change
1
+ ------------------------------------------------------------------------
2
+ -- The Agda standard library
3
+ --
4
+ -- Showing signs
5
+ ------------------------------------------------------------------------
6
+
7
+ {-# OPTIONS --cubical-compatible --safe #-}
8
+
9
+ module Data.Sign.Show where
10
+
11
+ open import Data.Sign.Base using (Sign; +; -)
12
+ open import Data.String.Base using (String)
13
+
14
+ show : Sign → String
15
+ show + = "+"
16
+ show - = "-"
You can’t perform that action at this time.
0 commit comments