-- | -- Module : Data.UUID -- Copyright : (c) 2008 Antoine Latter -- -- License : BSD-style -- -- Maintainer : aslatter@gmail.com -- Stability : experimental -- Portability : portable -- -- -- This library is useful for comparing, parsing and -- printing Universally Unique Identifiers. -- See for the general idea. -- See for the specification. -- -- For generating UUIDs, check out 'Data.UUID.V1', 'Data.UUID.V5' and -- 'System.Random'. module Data.UUID(UUID ,toString ,fromString ,toByteString ,fromByteString ,null ,nil ) where import Prelude hiding (null) import Data.UUID.Internal -- Everything is really implemented in Data.UUID.Internal, -- but I don't want to export the constructors out of the -- package.