Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6898055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:14:51+00:00 2026-05-27T07:14:51+00:00

Is there a good reason why the check function in the Contol.Concurent.STM library has

  • 0

Is there a good reason why the check function in the Contol.Concurent.STM library has type Bool -> STM a and returns undefined on success rather then having the type Bool -> STM ()? The way it is implemented the type checker will polity compile a do block ending with check foo only to fail at runtime with *** Exception: Prelude.undefined.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T07:14:52+00:00Added an answer on May 27, 2026 at 7:14 am

    It looks like it’s a placeholder definition for a GHC PrimOp, like the “definition” seq _ y = y that gets replaced by the compiler with the actual primitive implementation code. The PrimOp implementation of check takes an expression and adds it to a global list of invariants as described in the STM invariants paper.

    Here’s a super-contrived example modified from that paper to fit the new type of check:

    import Control.Concurrent.STM
    
    data LimitedTVar = LTVar { tvar  :: TVar Int
                             , limit :: Int
                             }
    
    newLimitedTVar :: Int -> STM LimitedTVar
    newLimitedTVar lim = do 
      tv <- newTVar 0
      return $ LTVar tv lim
    
    incrLimitedTVar :: LimitedTVar -> STM ()
    incrLimitedTVar (LTVar tv lim) = do
      val <- readTVar $ tv
      let val' = val + 1
      check (val' <= lim)
      writeTVar tv val'
    
    test :: STM ()
    test = do
      ltv <- newLimitedTVar 2
      incrLimitedTVar ltv -- should work
      incrLimitedTVar ltv -- should work still
      incrLimitedTVar ltv -- should fail; we broke the invariant
    

    Realistically, this would be useful to assert invariants on shared state where failing the assertion might be a sign of a temporary inconsistency. You might then want to retry with the expectation of that invariant becoming true again eventually, but since this example winds up permanently breaking the invariant, it just calls retry forever and appears to hang. Check out the paper for much better examples, but keep in mind that the type has changed since its publication.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a good reason why there is no Pair<L,R> in Java? What would
Is there a good reason (advantage) for programming this style XmlDocument doc = null;
Is there a good reason for this? It is a lame question, but I
Is there any good reason to disallow scriptlet or EL expression to be inserted
Put differently: Is there a good reason to choose a loosely-typed collection over a
If so, can the image be animated? Is there a good reason not to
Is there ever a good reason to not declare a virtual destructor for a
I was wondering if there is a good reason for ScriptReference not to override
I'm sure there is a good (or at least decent) reason for this. What
Are there good reasons why it's a better practice to have only one return

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.