A variation on the smart constructor pattern.
This may be overkill.
{-# LANGUAGE TemplateHaskell #-}
module Foo (Foo(), doubleFromFoo,
maybeFooFromDouble, unsafeFooFromDouble, thFooFromDouble)
where
import Language.Haskell.TH
Anyway, standard newtype...
newtype Foo = Foo Double
Getting a Double out is easy...
doubleFromFoo :: Foo -> Double
doubleFromFoo (Foo x) = x
Putting a Double in at runtime incurs a runtime check, no getting round that...
maybeFooFromDouble :: Double -> Maybe Foo
maybeFooFromDouble x
| 0 <= x && x <= 1 = Just (Foo x)
| otherwise = Nothing
...unless you're happy being unsafe (and have some social means of enforcing that all uses of unsafeFooFromDouble are actually safe)...
unsafeFooFromDouble :: Double -> Foo
unsafeFooFromDouble = Foo
But if it's a compile-time constant, you can do the check at compile-time, with no runtime overhead:
thFooFromDouble :: (Real a, Show a) => a -> Q Exp
thFooFromDouble x
| 0 <= x && x <= 1 = return $ AppE (VarE 'unsafeFooFromDouble)
(LitE (RationalL (toRational x)))
| otherwise = fail $ show x ++ " is not between 0 and 1"
And this is how you use that last function:
$(thFooFromDouble 0.3)
Remember not to put any spaces between the $ and the (!.
data NumberBetweenZeroAndOne = NumberBetweenZeroAndOnesupports all the functionality you need, and without the overhead of actually storing a number from [0,1] to boot. But presumably this is inadequate for your purposes. What operations do you need this datatype to support? – dave4420 Feb 22 at 20:59