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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:15:33+00:00 2026-06-01T13:15:33+00:00

I know there is a clean way to map a function f:A => B

  • 0

I know there is a clean way to map a function f:A => B over an array, foo of type Array[A] to get an Array[B] via foo.map{f}.

Is there a clean way to map f over bar:Array[Array[A]] to get an Array[Array[B]] that preserves the array structure of bar while mapping all of the A elements to elements of type B?

In general, is there a way to map the elements of arrays of arbitrary dimensions (i.e. not just 2D but 3D, 4D, etc.).

  • 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-01T13:15:34+00:00Added an answer on June 1, 2026 at 1:15 pm

    You can map within the map:

    bar.map(_.map(f))
    

    I doubt there’s a type-safe way to map arrays of arbitrary dimensions, since arrays of different dimensions are of different types. But it’s simple enough to keep nesting map calls:

    scala> val bam = new Array[Array[Array[Array[Array[A]]]]](0)
    bam: Array[Array[Array[Array[Array[A]]]]] = Array()
    
    scala> bam.map(_.map(_.map(_.map(_.map(f)))))
    res1: Array[Array[Array[Array[Array[B]]]]] = Array()
    

    Actually, I found that shapeless has “generic map and fold operations over arbitrarily nested data structures”. I haven’t tested with Array, but it looks like it works with other data structures.

    everywhere(f)(bam)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know if there is a clean way to do git-svn
I know there is a function somewhere that will accept a client rect and
I know there is a way to add a IE control, how do you
Is there a way of preventing a Google Maps (JS, v3) map being displayed
Is there a clean way to have a decorator call an instance method on
Possible Duplicate: Is there a clean way to prevent windows.h from creating a near
In Maven, is there a way to map one file to another file with
window.CardList = Backbone.Collection.extend(...); var Cards = new CardList; Cards.filter(...).pluck('values') Is there a clean way
I'd like to know if there is a way to clear (delete) a google.maps.LatLngBounds(),
I know the title isn't very clear. I'm new to PHP, so there might

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.