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

  • Home
  • SEARCH
  • 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 6588267
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:01:36+00:00 2026-05-25T17:01:36+00:00

I have to print on pre-order a polymorphic Tree type. I’m having some trouble

  • 0

I have to print on pre-order a polymorphic Tree type. I’m having some trouble because my generic type t may not be “printable”. Does anyone knows how to sold this? Is there anyway to tell haskell to only accept “printable” types? (print on the console, soo it should be something like “Show”)

Here is the code:

import Char

data Tree t =
    NilT |
    Node t (Tree t) (Tree t)

instance Show (Tree t) where
    show = func

func :: (Tree t) -> String
func (NilT) = "" 
func (Node t a b) = t ++ (func a) ++ (func b)

Thanks!

  • 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-25T17:01:37+00:00Added an answer on May 25, 2026 at 5:01 pm

    Your can demand that t be an instance of Show, both in the instance declaration and the following type declaration:

    instance Show t => Show (Tree t)
    func :: Show t => Tree t -> String
    

    To use this, your pre-order traversal will need to call show.

    func (Node t a b) = show t ++ func a ++ func b
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a generic Print method that iterates over a list and simply prints
I have the following subroutine OutputingReorderedVectors, which aims to output vectors following some pre-specified
We have a print engine which basically picks pre defined tasks to run against
I have an upload form in rails. I'd like to do some pre-processing on
I have this: $xml = simplexml_load_file('test.xml'); print<pre>; print_r($xml); It printout this: SimpleXMLElement Object (
let's say i have $_SESSION['cart']; when I print this echo <pre>,print_r($_SESSION['cart']),</pre>; it will show
I have a situation where I have to print out a NUL character if
if for example i have : #define PRINT(x) fprintf(stderr, x); and in code i
Is there a way to have rails print out a number with commas in
I have the following code print Starting stage 1<br> # Something that takes about

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.