Fix #227
This commit is contained in:
parent
88ce889159
commit
32a626789b
1 changed files with 8 additions and 9 deletions
|
@ -115,12 +115,11 @@ _++_ : ∀ {A : Set} → List A → List A → List A
|
||||||
[] ++ ys = ys
|
[] ++ ys = ys
|
||||||
(x ∷ xs) ++ ys = x ∷ (xs ++ ys)
|
(x ∷ xs) ++ ys = x ∷ (xs ++ ys)
|
||||||
```
|
```
|
||||||
The type `A` is an implicit argument to append, making it a
|
The type `A` is an implicit argument to append, making it a _polymorphic_
|
||||||
_polymorphic_ function (one that can be used at many types). The
|
function (one that can be used at many types). A list appended to the empty list
|
||||||
empty list appended to another list yields the other list. A
|
yields the list itself. A list appended to a non-empty list yields a list with
|
||||||
non-empty list appended to another list yields a list with head the
|
the head the same as the head of the non-empty list, and a tail the same as the
|
||||||
same as the head of the first list and tail the same as the tail of
|
other list appended to tail of the non-empty list.
|
||||||
the first list appended to the second list.
|
|
||||||
|
|
||||||
Here is an example, showing how to compute the result
|
Here is an example, showing how to compute the result
|
||||||
of appending two lists:
|
of appending two lists:
|
||||||
|
@ -658,7 +657,7 @@ Show
|
||||||
|
|
||||||
Show as a consequence of `foldr-++` above that
|
Show as a consequence of `foldr-++` above that
|
||||||
|
|
||||||
xs ++ ys ≡ foldr _∷_ ys xs
|
xs ++ ys ≡ foldr _∷_ ys xs
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -792,7 +791,7 @@ foldr-monoid _⊗_ e ⊗-monoid (x ∷ xs) y =
|
||||||
In a previous exercise we showed the following.
|
In a previous exercise we showed the following.
|
||||||
```
|
```
|
||||||
postulate
|
postulate
|
||||||
foldr-++ : ∀ {A : Set} (_⊗_ : A → A → A) (e : A) (xs ys : List A) →
|
foldr-++ : ∀ {A : Set} (_⊗_ : A → A → A) (e : A) (xs ys : List A) →
|
||||||
foldr _⊗_ e (xs ++ ys) ≡ foldr _⊗_ (foldr _⊗_ e ys) xs
|
foldr _⊗_ e (xs ++ ys) ≡ foldr _⊗_ (foldr _⊗_ e ys) xs
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1075,7 +1074,7 @@ data merge {A : Set} : (xs ys zs : List A) → Set where
|
||||||
→ merge xs ys zs
|
→ merge xs ys zs
|
||||||
--------------------------
|
--------------------------
|
||||||
→ merge xs (y ∷ ys) (y ∷ zs)
|
→ merge xs (y ∷ ys) (y ∷ zs)
|
||||||
```
|
```
|
||||||
|
|
||||||
For example,
|
For example,
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue