Skip to content

Commit afb3ea6

Browse files
committed
update CHANGELOG for issue agda#1731
1 parent ae34ec2 commit afb3ea6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1290,6 +1290,18 @@ Other minor changes
12901290
monad : RawMonad (λ (A : Set a) → Vec A n)
12911291
```
12921292

1293+
* Added new proofs in `Data.Vec.Functional.Relation.Binary.Pointwise.Properties`:
1294+
```agda
1295+
[]⁺ : Pointwise R [] []
1296+
_∷⁺_ : R x y → Pointwise R {n} xs ys → Pointwise R (x ∷ xs) (y ∷ ys)
1297+
```
1298+
1299+
* Added new proofs in `Data.Vec.Functional.Relation.Unary.All.Properties`:
1300+
```agda
1301+
[]⁺ : All P []
1302+
_∷⁺_ : P x → All P {n} xs → All P (x ∷ xs)
1303+
```
1304+
12931305
* Added new proofs in `Data.Vec.Properties`:
12941306
```agda
12951307
padRight-refl : padRight ≤-refl a xs ≡ xs

0 commit comments

Comments
 (0)