From 1e49ccdd1dc304b1060ba0907d282b40c673292c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9cate=20Kleidukos?= Date: Mon, 19 Jan 2026 11:34:21 +0100 Subject: [PATCH] Remove confusing comparison and unsubstantiated performance claims from the docs --- Data/Array.hs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Data/Array.hs b/Data/Array.hs index 6b632fd2..81022b12 100644 --- a/Data/Array.hs +++ b/Data/Array.hs @@ -57,13 +57,6 @@ import Data.Ix import GHC.Arr -- Most of the hard work is done here {- $intro -Haskell provides indexable /arrays/, which may be thought of as functions -whose domains are isomorphic to contiguous subsets of the integers. -Functions restricted in this way can be implemented efficiently; -in particular, a programmer may reasonably expect rapid access to -the components. To ensure the possibility of such an implementation, -arrays are treated as data, not as general functions. - Since most array functions involve the class 'Ix', this module is exported from "Data.Array" so that modules need not import both "Data.Array" and "Data.Ix".