diff options
| author | Mikolaj Konarski <mikolaj.konarski@funktory.com> | 2026-03-23 12:42:51 +0100 |
|---|---|---|
| committer | Mikolaj Konarski <mikolaj.konarski@funktory.com> | 2026-03-23 12:42:51 +0100 |
| commit | f573ac4bb71b2f3081d31f4b7ed75460f245f2c1 (patch) | |
| tree | e1ae871235d3b83a0deed59402d32b44c6a798a8 /src/Data/Dependent/EnumMap/Strict | |
| parent | b9f905a7d1571471200328d0b5062052c76b4e53 (diff) | |
Attempt to fix a dangling haddock reference
Diffstat (limited to 'src/Data/Dependent/EnumMap/Strict')
| -rw-r--r-- | src/Data/Dependent/EnumMap/Strict/Internal.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Data/Dependent/EnumMap/Strict/Internal.hs b/src/Data/Dependent/EnumMap/Strict/Internal.hs index f7128f2..0ede040 100644 --- a/src/Data/Dependent/EnumMap/Strict/Internal.hs +++ b/src/Data/Dependent/EnumMap/Strict/Internal.hs @@ -602,7 +602,7 @@ partitionWithKey f (DEnumMap m) = -- | \(O(\min(n,W)^2)\). Because of the lack of a @takeWhileAntitoneWithValue@ -- operation on 'Data.IntMap.Strict.IntMap', this function performs additional lookups to -- reconstruct the full keys to pass to the predicate, resulting in a somewhat --- worse complexity than 'IM.takeWhileAntitone'. +-- worse complexity than 'Data.IntMap.Strict.takeWhileAntitone'. takeWhileAntitone :: Enum1 k => (forall a. k a -> Bool) -> DEnumMap k v -> DEnumMap k v takeWhileAntitone f (DEnumMap m) = DEnumMap (IM.takeWhileAntitone (\i -> case m IM.! i of |
