File tree 4 files changed +4
-5
lines changed
4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -346,8 +346,7 @@ findIndices {A = A} p = h 0 where
346
346
h n [] = []
347
347
h n (x ∷ xs) = if p x
348
348
then n ∷ h (suc n) xs
349
- else h (suc n) xs
350
-
349
+ else h (suc n) xs
351
350
352
351
-- The following are functions which split a list up using boolean
353
352
-- predicates. However, in practice they are difficult to use and
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ module Data.List.Membership.Setoid.Properties where
11
11
open import Algebra using (Op₂; Selective)
12
12
open import Data.Bool.Base using (true; false)
13
13
open import Data.Fin.Base using (Fin; zero; suc)
14
- open import Data.List.Base
14
+ open import Data.List.Base hiding (find)
15
15
open import Data.List.Relation.Unary.Any as Any using (Any; here; there)
16
16
open import Data.List.Relation.Unary.All as All using (All)
17
17
import Data.List.Relation.Unary.Any.Properties as Any
Original file line number Diff line number Diff line change 9
9
module Data.List.Relation.Binary.Subset.Setoid.Properties where
10
10
11
11
open import Data.Bool.Base using (Bool; true; false)
12
- open import Data.List.Base hiding (_∷ʳ_)
12
+ open import Data.List.Base hiding (_∷ʳ_; find )
13
13
open import Data.List.Relation.Unary.Any as Any using (Any; here; there)
14
14
open import Data.List.Relation.Unary.All as All using (All)
15
15
import Data.List.Membership.Setoid as Membership
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ open import Data.Bool.Base using (Bool; false; true; T)
12
12
open import Data.Bool.Properties using (T-∨; T-≡)
13
13
open import Data.Empty using (⊥)
14
14
open import Data.Fin.Base using (Fin; zero; suc)
15
- open import Data.List.Base as List
15
+ open import Data.List.Base as List hiding (find)
16
16
open import Data.List.Properties using (ʳ++-defn)
17
17
open import Data.List.Effectful as Listₑ using (monad)
18
18
open import Data.List.Relation.Unary.Any as Any using (Any; here; there)
You can’t perform that action at this time.
0 commit comments