{-# LANGUAGE RankNTypes #-} module Web.Twitter.Types.Lens.Types ( Lens , Lens' ) where -- | A type alias of the lens. -- It is the same definition as the lens which introduced in -- type Lens s t a b = forall f. Functor f => (a -> f b) -> s -> f t -- | Same as Lens' type Lens' s a = Lens s s a a