Clean up imports
This commit is contained in:
parent
efa96d7e2f
commit
11cc587d1b
|
@ -3,6 +3,7 @@ open import Data.Bool
|
||||||
open import Data.Empty
|
open import Data.Empty
|
||||||
open import Data.Unit
|
open import Data.Unit
|
||||||
open import Data.Nat
|
open import Data.Nat
|
||||||
|
|
||||||
import Data.String as S
|
import Data.String as S
|
||||||
import Data.List as L
|
import Data.List as L
|
||||||
open S using (String)
|
open S using (String)
|
||||||
|
@ -76,8 +77,8 @@ instance
|
||||||
EqCh : Eq Data.Char.Char
|
EqCh : Eq Data.Char.Char
|
||||||
EqCh ._==_ a b = a Data.Char.== b
|
EqCh ._==_ a b = a Data.Char.== b
|
||||||
|
|
||||||
EqString : Eq Data.String.String
|
EqString : Eq String
|
||||||
EqString ._==_ a b = a Data.String.== b
|
EqString ._==_ a b = a S.== b
|
||||||
|
|
||||||
EqMaybe : {T : Type} → ⦃ Eq T ⦄ → Eq (Maybe T)
|
EqMaybe : {T : Type} → ⦃ Eq T ⦄ → Eq (Maybe T)
|
||||||
EqMaybe ._==_ (real a) (real b) = a == b
|
EqMaybe ._==_ (real a) (real b) = a == b
|
||||||
|
|
|
@ -4,7 +4,13 @@ open import Data.Product
|
||||||
open import Data.Nat
|
open import Data.Nat
|
||||||
open import Data.List using (List; []; _∷_)
|
open import Data.List using (List; []; _∷_)
|
||||||
open import Data.Bool
|
open import Data.Bool
|
||||||
|
|
||||||
|
import Data.String as S
|
||||||
|
import Data.List as L
|
||||||
import Data.Vec as V
|
import Data.Vec as V
|
||||||
|
open S using (String)
|
||||||
|
open L using (List)
|
||||||
|
open V using (Vec)
|
||||||
|
|
||||||
open import Base
|
open import Base
|
||||||
|
|
||||||
|
@ -62,7 +68,7 @@ list-to-list⁺? (x ∷ xs) = real (cons⁺ x xs)
|
||||||
|
|
||||||
instance
|
instance
|
||||||
ShowList⁺ : {A : Type} → ⦃ Show A ⦄ → Show (List⁺ A)
|
ShowList⁺ : {A : Type} → ⦃ Show A ⦄ → Show (List⁺ A)
|
||||||
ShowList⁺ .show x = show (list⁺-to-list x) String.++ "⁺"
|
ShowList⁺ .show x = show (list⁺-to-list x) S.++ "⁺"
|
||||||
where
|
where
|
||||||
import Data.String as String
|
import Data.String as String
|
||||||
|
|
||||||
|
|
|
@ -108,8 +108,8 @@ module Test-HTTP where
|
||||||
; version = HTTP11
|
; version = HTTP11
|
||||||
; headers =
|
; headers =
|
||||||
record { name = string-to-ascii-list⁺ "Content-Length" ; value = string-to-ascii-list⁺ "6" }
|
record { name = string-to-ascii-list⁺ "Content-Length" ; value = string-to-ascii-list⁺ "6" }
|
||||||
List.∷ record { name = string-to-ascii-list⁺ "Host" ; value = string-to-ascii-list⁺ "agda.nu" }
|
L.∷ record { name = string-to-ascii-list⁺ "Host" ; value = string-to-ascii-list⁺ "agda.nu" }
|
||||||
List.∷ List.[]
|
L.∷ L.[]
|
||||||
; content = real (string-to-ascii-list "mjau:)")
|
; content = real (string-to-ascii-list "mjau:)")
|
||||||
}
|
}
|
||||||
, _
|
, _
|
||||||
|
|
Loading…
Reference in New Issue
Block a user