Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
ProjectM36.GraphRefRelationalExpr
Synopsis
- data SingularTransactionRef
- singularTransaction :: Foldable t => t GraphRefTransactionMarker -> SingularTransactionRef
- inSameTransaction :: GraphRefRelationalExpr -> GraphRefRelationalExpr -> Maybe GraphRefTransactionMarker
- singularTransactions :: (Foldable f, Foldable t) => f (t GraphRefTransactionMarker) -> SingularTransactionRef
Documentation
data SingularTransactionRef Source #
Constructors
SingularTransactionRef GraphRefTransactionMarker | |
MultipleTransactionsRef | |
NoTransactionsRef |
Instances
Monoid SingularTransactionRef Source # | |
Semigroup SingularTransactionRef Source # | |
Defined in ProjectM36.GraphRefRelationalExpr Methods (<>) :: SingularTransactionRef -> SingularTransactionRef -> SingularTransactionRef Source # sconcat :: NonEmpty SingularTransactionRef -> SingularTransactionRef Source # stimes :: Integral b => b -> SingularTransactionRef -> SingularTransactionRef Source # | |
Show SingularTransactionRef Source # | |
Defined in ProjectM36.GraphRefRelationalExpr | |
Eq SingularTransactionRef Source # | |
Defined in ProjectM36.GraphRefRelationalExpr Methods (==) :: SingularTransactionRef -> SingularTransactionRef -> Bool Source # (/=) :: SingularTransactionRef -> SingularTransactionRef -> Bool Source # |
singularTransaction :: Foldable t => t GraphRefTransactionMarker -> SingularTransactionRef Source #
return `Just transid` if this GraphRefRelationalExpr refers to just one transaction in the graph. This is useful for determining if certain optimizations can apply.
inSameTransaction :: GraphRefRelationalExpr -> GraphRefRelationalExpr -> Maybe GraphRefTransactionMarker Source #
Return True if two GraphRefRelationalExpr
s both refer exclusively to the same transaction (or none at all).
singularTransactions :: (Foldable f, Foldable t) => f (t GraphRefTransactionMarker) -> SingularTransactionRef Source #