{-|
Module      : Docs
Description : A collection of docs and examples of use /with/ pictures
Copyright   : (c) David Janin, Simon Archipoff, 2016
License     : see the LICENSE file in the distribution
Maintainer  : janin@labri.fr
Stability   : experimental

The order of documentation modules is suposed to be relevant.

-}

module Docs (
             -- * The algebra of tiles
             -- ** Additive operators
             module Docs.Additive,
             -- ** Multiplicative operators
             module Docs.Multiplicative,
             -- ** Normalization
             module Docs.Normalization,
             -- ** QLists beneath tiles
             module Docs.QList
             -- * Functions over tiles
                 -- ** Duration preserving functions
                 -- ** Delay preserving functions
                 
                )
                     where

import Docs.Additive
import Docs.Multiplicative
import Docs.Normalization
import Docs.QList