1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00

📝 getStore.

This commit is contained in:
Rob Rix 2017-12-21 11:15:36 -05:00
parent 1a0c163145
commit 86b4e6ad6c

View File

@ -19,6 +19,7 @@ assign = (modifyStore .) . storeInsert
-- | 'Monad's offering a readable & writable 'Store' of values for specific 'Address'es.
class Monad m => MonadStore a m where
-- | Get the current store.
getStore :: m (Store (LocationFor a) a)
putStore :: Store (LocationFor a) a -> m ()