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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:59:22+00:00 2026-05-22T22:59:22+00:00

Learning haskell and want a function to generate a 2D grid similar to how

  • 0

Learning haskell and want a function to generate a 2D grid similar to how you might in C:

int data[3][3]

what’s an acceptable and elegant approach? Zip? Foldl?

I could declare one like:

x = [[0,0,0],
     [0,0,0],
     [0,0,0]]

But I would like a function with x y parameters. Struggling to understand the easiest way without for/while loops 🙁

  • 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-22T22:59:23+00:00Added an answer on May 22, 2026 at 10:59 pm

    You seem to be asking “what should I use instead of Arrays in Haskell”, right? You asked about using lists, which certainly aren’t arrays and should be avoided for any serious work requiring non-sequential access (for example, lists give O(n) element access instead of O(1)).

    The packages you should consider: array (old, standard Haskell arrays), vector (new, uses stream fusion, fast, an API that’s actually reasonable, boxed or unboxed, but only one dimension unless you nest them), and repa (only works on newer GHC versions, but allows multi-dimensional arrays and parallel operations even on unboxed representations).

    The easiest way to initialize any of these (I assume you mean “initialize” when you say “generate”) is their respective “fromList” functions. For example:

    import Data.Vector as V
    ...
        V.fromList $ map V.fromList [[01,02,03],[11,12,13],[22,22,23]]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently learning Haskell. I am trying to write a function which given
I'm learning Haskell now and I'm facing the following problem: I want to rewrite
Still learning haskell, and I cannot really see the difference between data Tree a
I'm learning Haskell and I'm trying to write a function to return a list
I am learning Haskell. I have created function which returns multiplication table up to
I just started learning haskell, and I tried to implement a simple function to
Learning Haskell is killing me. If I am going to write a function that
I'm currently learning Haskell, Which language (F# or Haskell) do you prefer for programming
I'm interested in learning Haskell on my own time (not through a course), but
As I am learning Haskell, I see that there is a lot of language

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.