1
1
mirror of https://github.com/github/semantic.git synced 2024-12-28 09:21:35 +03:00

Document Adjoined.

This commit is contained in:
Rob Rix 2016-03-11 14:25:53 -05:00
parent 379208b3a3
commit 842af743e7

View File

@ -5,6 +5,7 @@ import Control.Monad
import Data.Coalescent
import Data.Sequence as Seq
-- | A collection of elements which can be adjoined onto other such collections associatively.
newtype Adjoined a = Adjoined { unAdjoined :: Seq a }
deriving (Eq, Foldable, Functor, Show, Traversable)