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 4321048
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T08:42:01+00:00 2026-05-21T08:42:01+00:00

I have some old Haskell code that includes QuickCheck test cases. Newer versions of

  • 0

I have some old Haskell code that includes QuickCheck test cases. Newer versions of QuickCheck (I’ve just upgraded to 2.4.0.1) include type class instances for Arbitrary Word8 and others. These did not exist in older 2.0.x versions of Test.QuickCheck.Arbitrary.

While useful in the general sense, the package-provided Arbitrary Word8 generator is not the one I want to use for my test suite:

instance Arbitrary Word8 where
  arbitrary = frequency [(2, oneof [return ctrlFrameDelim, return ctrlEscape, return ctrlXon, return ctrlXoff]),
                         (8, choose (0, 255))]

The above code causes a duplicate instance declaration error at compile-time. I can take this code out and get by with the default generator but I’d like to know the proper way to solve this.

One possible solution I’ve considered (but not tested) is aliasing Word8 using newtype. That would cause many changes throughout the source so I’m hoping there is a cleaner way.

EDIT: As mentioned in the comments below, the accepted answer was very clean and easy to implement:

newtype EncodedByte = EncodedByte Word8

instance Arbitrary EncodedByte where
  arbitrary = liftM EncodedByte $ frequency [(2, elements [ctrlFrameDelim, ctrlEscape, ctrlXon, ctrlXoff]),
                                             (8, choose (0, 255))]
  • 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-21T08:42:02+00:00Added an answer on May 21, 2026 at 8:42 am

    A newtype alias is the standards solution here. In most cases, which might not include yours, this isn’t a big deal because the newtype wrapper only needs to appear where you use the Arbitrary typeclass. For example, you might have at some top level:

    x <- arbitrary
    

    And instead you’d have

    newtype SomeNewType = SNT Word8
    instance Arbitrary SomeNewType where ...
    ....
        SNT x <- arbitrary
    

    What you probably want doesn’t exist as a GHC extension – you want explicit importing and exporting of instances. If you had explicit instance imports this would allow:

    import Test.QuickCheck hiding (Arbitrary(Word8))
    

    But break lots of code that currently works by implicit imports of instances:

    import Test.QuickCheck (quickCheck) -- note the implicit import of Arbitrary(..)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have some old C code here that's built with nmake. Is there an
I have some old C code that I would like to combine with some
I have some old python code that uses the pywin32 extensions. Starting out with
We have some really old code that calls WebServices using behaviours (webservice.htc), and we
Found some old code, circa VS 2003. Now I have just VS 2008 (SP1)
I have some old code that I'm converting to use in Windows Phone. The
I have some old code (pre Java 1.5) that uses classes to implement type
so I’ve come across some old code that I have to replicate, but it
I have some old apps written in PHP that I'm thinking of converting to
While refactoring some old code I have stripped out a number of public methods

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.