hgeometry-ipe-0.9.0.0: src/Data/Geometry/Ipe/Value.hs
{-# LANGUAGE OverloadedStrings #-}
--------------------------------------------------------------------------------
-- |
-- Module : Data.Geometry.Ipe.Value
-- Copyright : (C) Frank Staals
-- License : see the LICENSE file
-- Maintainer : Frank Staals
--
-- Data type for representing values in ipe.
--
--------------------------------------------------------------------------------
module Data.Geometry.Ipe.Value where
import GHC.Exts
import Data.Text
--------------------------------------------------------------------------------
-- | Many types either consist of a symbolc value, or a value of type v
data IpeValue v = Named Text | Valued v
deriving (Show,Read,Eq,Ord,Functor,Foldable,Traversable)
instance IsString (IpeValue v) where
fromString = Named . fromString