This project is mirrored from ssh://github.com/haskell/array.git.
Pull mirroring updated .
- Dec 20, 2024
- Dec 18, 2024
-
-
sheaf authored
These SPECIALISE pragmas don't actually do anything, and starting with GHC 9.14 cause a warning to be emitted. This commit simply removes them.
-
- Dec 17, 2024
-
-
Lei Zhu authored
-
- Nov 26, 2024
-
-
Zubin authored
-
- Nov 15, 2024
-
-
Ben Gamari authored
Update second test output for GHC!13301
-
Rodrigo Mesquita authored
-
- Oct 17, 2024
-
-
Lei Zhu authored
-
Rodrigo Mesquita authored
-
- Sep 08, 2024
- Aug 25, 2024
- Aug 24, 2024
-
-
Lei Zhu authored
-
Lei Zhu authored
-
At the moment it is quite difficult to perform some folds on some arrays. * In general, arrays can be folded over by folding over the range of indices and then indexing into the array. This is a little cumbersome, and also inefficient when folding right-to-left because Ix does not offer reversed range generation. * Alternately, Array has a Foldable instance which works great, but UArray cannot be Foldable. Folds on UArray can instead be done via elems. Due to list fusion, this works out well for some folds (foldr, foldl'), but not others (foldr'). * For mutable arrays, there are no alternate ways to fold. This commit adds some commonly used folds for arrays and mutable arrays to improve this situation.
-
Lei Zhu authored
-
- Jul 25, 2024
-
-
meooow authored
-
- May 17, 2024
-
-
Sylvain Henry authored
-
- Mar 08, 2024
-
-
Ben Gamari authored
-
- Feb 29, 2024
-
-
Ben Gamari authored
-
- Feb 28, 2024
-
-
Ben Gamari authored
-
- Jan 26, 2024
-
-
Tommy Bidne authored
https://github.com/haskell/core-libraries-committee/issues/231 Also swap Trustworthy for Safe to placate -Wtrustworthy-safe in ghc tests.
-
- Nov 08, 2023
-
-
* Use unsafeNewArray_ instead of newAray_. We know we will fill the array, and newArray_ wastefully initializes it beforehand. * Avoid safeIndexing the range when writing the elements. range generates the elements in the required order, so we can simply use an Int counter.
- Sep 27, 2023
-
-
konsumlamm authored
-
- Sep 08, 2023
-
-
- Jul 09, 2023
-
- Jul 02, 2023
-
-
- Jun 18, 2023
-
- Jun 15, 2023
-
-
Francesco Gazzetta authored
-
- May 04, 2023
-
- Apr 25, 2023
-
- Feb 13, 2023
-
-
Ben Gamari authored
-