Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate contrib:Data.Vect.Views.Extra to base:Data.Vect.Views #3497

Merged
merged 2 commits into from
Feb 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG_NEXT.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ This CHANGELOG describes the merged but unreleased changes. Please see [CHANGELO

#### Base

* `Data.Vect.Views.Extra` was moved from `contrib` to `base`.

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

* Added an `Interpolation` implementation for primitive decimal numeric types and `Nat`.
Expand Down Expand Up @@ -287,6 +289,8 @@ This CHANGELOG describes the merged but unreleased changes. Please see [CHANGELO

#### Contrib

* `Data.Vect.Views.Extra` was moved from `contrib` to `base`.

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

* Existing `System.Console.GetOpt` was extended to support errors during options
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
||| Additional views for Vect
module Data.Vect.Views.Extra
||| Views for Vect
module Data.Vect.Views

import Control.WellFounded
import Data.Vect
Expand Down
1 change: 1 addition & 0 deletions libs/base/base.ipkg
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ modules = Control.App,
Data.Vect.AtIndex,
Data.Vect.Elem,
Data.Vect.Quantifiers,
Data.Vect.Views,
Data.Void,
Data.Zippable,

Expand Down
1 change: 0 additions & 1 deletion libs/contrib/contrib.ipkg
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ modules = Control.ANSI,
Data.Vect.Properties.Fin,
Data.Vect.Extra,
Data.Vect.Sort,
Data.Vect.Views.Extra,

Debug.Buffer,

Expand Down
2 changes: 1 addition & 1 deletion tests/idris2/with/with011/WithImplicits.idr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Data.Vect
import Data.Vect.Views.Extra
import Data.Vect.Views

mergeSort : Ord a => {n : _} -> Vect n a -> Vect n a
mergeSort input with (splitRec input)
Expand Down
Loading