summaryrefslogtreecommitdiff
path: root/packages/base/src/Data/Packed/Development.hs
blob: 72eb16bdd78963eb793484a734262b5298bdf33b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

-----------------------------------------------------------------------------
-- |
-- Module      :  Data.Packed.Development
-- Copyright   :  (c) Alberto Ruiz 2009
-- License     :  BSD3
-- Maintainer  :  Alberto Ruiz
-- Stability   :  provisional
-- Portability :  portable
--
-- The library can be easily extended with additional foreign functions
-- using the tools in this module. Illustrative usage examples can be found
-- in the @examples\/devel@ folder included in the package.
--
-----------------------------------------------------------------------------
{-# OPTIONS_HADDOCK hide #-}

module Data.Packed.Development (
    createVector, createMatrix,
    vec, mat,
    app1, app2, app3, app4,
    app5, app6, app7, app8, app9, app10,
    MatrixOrder(..), orderOf, cmat, fmat,
    matrixFromVector,
    unsafeFromForeignPtr,
    unsafeToForeignPtr,
    check, (//),
    at', atM', fi
) where

import Data.Packed.Internal