File tree 5 files changed +4
-5
lines changed
src/Data/List/Relation/Unary
5 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ module README.Case where
12
12
open import Data.Fin hiding (pred)
13
13
open import Data.Maybe hiding (from-just)
14
14
open import Data.Nat hiding (pred)
15
- open import Data.List
16
15
open import Data.Product
17
16
open import Function.Base using (case_of_; case_return_of_)
18
17
open import Relation.Nullary
Original file line number Diff line number Diff line change 9
9
module README.Design.Decidability where
10
10
11
11
open import Data.Bool
12
- open import Data.List
12
+ open import Data.List.Base using (List; []; _∷_)
13
13
open import Data.List.Properties using (∷-injective)
14
14
open import Data.Nat
15
15
open import Data.Nat.Properties using (suc-injective)
Original file line number Diff line number Diff line change 6
6
7
7
{-# OPTIONS --cubical-compatible --safe #-}
8
8
9
- open import Data.List
9
+ open import Data.List.Base using (List)
10
10
open import Level
11
11
open import Relation.Binary
12
12
Original file line number Diff line number Diff line change 9
9
module Data.List.Relation.Unary.Grouped.Properties where
10
10
11
11
open import Data.Bool using (true; false)
12
- open import Data.List
12
+ open import Data.List.Base using ([]; [_]; _∷_; map; derun)
13
13
open import Data.List.Relation.Unary.All as All using (All; []; _∷_)
14
14
import Data.List.Relation.Unary.All.Properties as All
15
15
open import Data.List.Relation.Unary.AllPairs as AllPairs using (AllPairs; []; _∷_)
Original file line number Diff line number Diff line change 6
6
7
7
{-# OPTIONS --cubical-compatible --safe #-}
8
8
9
- open import Data.List
9
+ open import Data.List.Base using ([]; _∷_; deduplicate)
10
10
import Data.List.Relation.Unary.Unique.DecSetoid as Unique
11
11
open import Data.List.Relation.Unary.All.Properties using (all-filter)
12
12
open import Data.List.Relation.Unary.Unique.Setoid.Properties
You can’t perform that action at this time.
0 commit comments