blob: d8ea31e694b26bbd3651817f9608f76b22fc1cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{- git-annex numcopies type
-
- Copyright 2014 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.NumCopies where
newtype NumCopies = NumCopies Int
deriving (Ord, Eq)
fromNumCopies :: NumCopies -> Int
fromNumCopies (NumCopies n) = n
|