-
-
Save thomashoneyman/0d50c736503fc9a5c72f8796e70d77d1 to your computer and use it in GitHub Desktop.
Example REPL config for `purescript-profunctor-lenses`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Prelude | |
import Data.Array as Array | |
import Data.Either (Either(..)) | |
import Data.Lens | |
import Data.Lens.At (at) | |
import Data.Lens.Index (ix) | |
import Data.Lens.Record (prop) | |
import Data.Lens.Iso.Newtype (_Newtype) | |
import Data.Map (Map) | |
import Data.Map as Map | |
import Data.Maybe (Maybe(..)) | |
import Data.Monoid.Additive (Additive(..)) | |
import Data.Newtype (class Newtype, unwrap, wrap) | |
import Data.Symbol (SProxy(..)) | |
import Data.Tuple (Tuple(..)) | |
import Network.RemoteData (RemoteData(..), _Success) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment