1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 08:25:19 +03:00

Define a smart constructor for Bool.

This commit is contained in:
Rob Rix 2019-11-04 14:46:41 -05:00
parent 722e40571c
commit 6b6581dbbe
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7

View File

@ -1,6 +1,7 @@
{-# LANGUAGE FlexibleContexts, GeneralizedNewtypeDeriving, QuantifiedConstraints, StandaloneDeriving #-}
module Analysis.Domain
( unit
, bool
, Domain(..)
) where
@ -12,6 +13,9 @@ import Syntax.Scope
unit :: (Carrier sig m, Member Domain sig) => m a
unit = send Unit
bool :: (Carrier sig m, Member Domain sig) => Bool -> m a
bool = send . Bool
data Domain f a
= Unit