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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T22:19:12+00:00 2026-06-06T22:19:12+00:00

We can’t do read someValue :: someDataType or show someValue for every type because

  • 0

We can’t do read someValue :: someDataType or show someValue for every type because deriving (Show, Read) has to be written in the data declarations. Is there a case, other than mistake, where we don’t want our type to be serializable?
Why is Show separated from Read? Is there a case, other than mistake, we only want to show some data and not read it? If not, why not have a single data type Serializable?

Just now, I’m using the Key datatype of the Gloss library which derives Show and not Read, which I don’t understand. It’s a shame because I wanted to put the configuration of the controls in a file and then read it, so the player can change the controls and have his own configuration.
I had to do wrappers for Key, SpecialKey and MouseButton, which is not a big deal but is useless.

data Key' = Char' Char | SpecialKey' SpecialKey | MouseButton' MouseButton
    deriving (Eq, Ord, Show, Read)
convertKey x = case x of
    Char' c -> Char c
    SpecialKey' sk -> SpecialKey sk
    MouseButton' mb -> MouseButton mb
  • 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-06-06T22:19:14+00:00Added an answer on June 6, 2026 at 10:19 pm

    Why is Show separate from Read

    I don’t know why this was originally, but feel it should persist because some (very few) types can be shown, or have a placeholder string shown, but not read back in. Functions are the typical example.

    Another way to think about it: It’s very easy to place things in separate classes but very hard to deal with too many functions in one class that doesn’t always make sense in the same contexts. Many people feel the Num class is a prime example of this issue.

    How Can I read Key and other types not in Read

    Step one: send in a patch adding Read to the set of derived instances. Step two: make a work around by using standalone deriving:

    {-# LANGUAGE StandaloneDeriving #-}
    deriving instance Show Key
    

    Step three: Use CPP to make your code work with either version of the codebase, be it the Gloss library with a Read instances that Ben will someday release or the version without.

    Why isn’t there a Serializable class?

    For starters, there is a Serialize class. Also, text is a horrible way to serialize things. Perhaps you’d want a lazier serialize class in which case you should see the Binary class. If you’re concerned about performance then you might like blaze-builder, though I’ve honestly never used it.

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

Sidebar

Related Questions

Can anybody help me? What should be the datatype for this type -07:00:00 of
Can someone help me with this scenario? *There is a button, which when tapped,
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
can someone show me the regex for this preg_match. I want to make sure
Can a LINQ enabled app run on a machine that only has the .NET
Can find why i get this error can someone help? package Android.data; public class
Can anyone let me know how can we change the value of kendo combobox
Can I order my users in the database, so I don't have to say
Can I change the field public virtual ClassOne ClassOne { get; set; } to
Can I authenticate with just Google account username and password instead of using OAuth?

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.