Skip to content

Commit

Permalink
[ refactor ] Move lazy lists from contrib to base
Browse files Browse the repository at this point in the history
  • Loading branch information
buzden committed Dec 20, 2023
1 parent 58e5d15 commit 89b7f30
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@
function and clean up all system resources (to not to leave zombie processes in
particular).

* `Data.List.Lazy` was moved from `contrib` to `base`.

#### System

* Changes `getNProcessors` to return the number of online processors rather than
Expand Down Expand Up @@ -287,6 +289,8 @@

* Implements `Sized` for `Data.Seq.Sized` and `Data.Seq.Unsized`.

* `Data.List.Lazy` was moved from `contrib` to `base`.

#### Papers

* In `Control.DivideAndConquer`: a port of the paper
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions libs/base/base.ipkg
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ modules = Control.App,
Data.List,
Data.List.Elem,
Data.List.HasLength,
Data.List.Lazy,
Data.List.Lazy.Quantifiers,
Data.List.Quantifiers,
Data.List.Views,
Data.List1,
Expand Down
3 changes: 0 additions & 3 deletions libs/contrib/contrib.ipkg
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ modules = Control.ANSI,

Data.List.Elem.Extra,

Data.List.Lazy,
Data.List.Lazy.Quantifiers,

Data.Logic.Propositional,

Data.Monoid.Exponentiation,
Expand Down
2 changes: 2 additions & 0 deletions src/Libraries/Data/List/Lazy.idr
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
-- This module is to be removed as soon as 0.7.* is released, since `Data.List.Lazy` is now in `base`

module Libraries.Data.List.Lazy

%default total
Expand Down

0 comments on commit 89b7f30

Please sign in to comment.