Created
          November 13, 2014 01:26 
        
      - 
      
 - 
        
Save kevinmeredith/bbc52c70eb064178501b to your computer and use it in GitHub Desktop.  
Revisions
- 
        
kevinmeredith created this gist
Nov 13, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ data JoinList m a = Empty | Single m a | Append m (JoinList m a) (JoinList m a) deriving (Eq, Show) -- where `m` is a Monoid {-# LANGUAGE GeneralizedNewtypeDeriving, FlexibleInstances #-} module Sized where import Data.Monoid newtype Size = Size Int deriving (Eq, Ord, Show, Num) getSize :: Size -> Int getSize (Size i) = i class Sized a where size :: a -> Size instance Sized Size where size = id -- This instance means that things like -- (Foo, Size) -- (Foo, (Bar, Size)) -- ... -- are all instances of Sized. instance Sized b => Sized (a,b) where size = size . snd instance Monoid Size where mempty = Size 0 mappend = (+)