aboutsummaryrefslogtreecommitdiff
path: root/src/Data/Array/Nested/Shaped.hs
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2025-05-16 00:20:16 +0200
committerTom Smeding <tom@tomsmeding.com>2025-05-16 00:20:16 +0200
commit0363f89b0681438a3059754a2b5fa2002123d4d1 (patch)
tree8147b0bcfba50c9a302eadfa90f5b184a77baba8 /src/Data/Array/Nested/Shaped.hs
parentb6a9d423ca954ef0f5e4c9a44e54b719d17a352c (diff)
Explicit re-exports of Base members
This is to ensure that haddock doesn't insert a module reference, but displays the members of the Base module inline.
Diffstat (limited to 'src/Data/Array/Nested/Shaped.hs')
-rw-r--r--src/Data/Array/Nested/Shaped.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Data/Array/Nested/Shaped.hs b/src/Data/Array/Nested/Shaped.hs
index c4c61fd..97c7277 100644
--- a/src/Data/Array/Nested/Shaped.hs
+++ b/src/Data/Array/Nested/Shaped.hs
@@ -7,8 +7,11 @@
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE ViewPatterns #-}
module Data.Array.Nested.Shaped (
- module Data.Array.Nested.Shaped.Base,
+ Shaped(Shaped),
+ squotArray, sremArray, satan2Array,
+ sshape,
module Data.Array.Nested.Shaped,
+ liftShaped1, liftShaped2,
) where
import Prelude hiding (mappend, mconcat)