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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:10:34+00:00 2026-06-14T14:10:34+00:00

For convenient analysis of data I’d like to use a library which for the

  • 0

For convenient analysis of data I’d like to use a library which for the following code:

data SomeType = A [String] Int | B | C Int deriving (Eq, Ord, Show)

main = do 
  let theData = A ["a", "b", "c"] 9 : C 3 : B : []
  putStr $ treeString theData -- `treeString` is the implied library function

would produce an output similar to the following:

- A:
| - - a
| | - b
| | - c
| - 9
- C:
| - 3
- B

Is there such a library? Or maybe a better approach to such a problem?

  • 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-14T14:10:35+00:00Added an answer on June 14, 2026 at 2:10 pm

    Data.Tree has drawTree and drawForest functions with similar formatting, so you can write a function to convert your data structure to a Tree String and then use drawTree.

    import Data.Tree
    
    data SomeType = A [String] Int | B | C Int deriving (Eq, Ord, Show)
    
    toTree :: SomeType -> Tree String
    toTree (A xs n) = Node "A" [Node "*" (map (flip Node []) xs), Node (show n) []]
    toTree B        = Node "B" []
    toTree (C n)    = Node "C" [Node (show n) []]
    
    main = do 
      let theData = A ["a", "b", "c"] 9 : C 3 : B : []
      putStr $ drawTree (Node "*" (map toTree theData))
    

    Output:

    *
    |
    +- A
    |  |
    |  +- *
    |  |  |
    |  |  +- a
    |  |  |
    |  |  +- b
    |  |  |
    |  |  `- c
    |  |
    |  `- 9
    |
    +- C
    |  |
    |  `- 3
    |
    `- B
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It is convenient for me to use a set. I like how I can
Are there any, free, tools which allow incremental static analysis of code (for SVN
F# has a convenient feature with, example: type Product = { Name:string; Price:int };;
It is much more convenient and cleaner to use a single statement like import
is there any convenient way execute tests on multiple data sets - like in
what is a convenient way to create a directory when a path like this
I often use Excel with pivot tables based on .cub files for OLAP-type analysis.
Is there any convenient way to read and parse data from incoming request. E.g
Jar is a convenient way to use java, as every class can be included
What is the easiest way to write a code analysis tool where I can

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.