I wish there was a canonical, common, simple, straightforward and nearly unambiguous and universal way to modify an element in an array.
In many languages: arr[idx] = nevalue
In Haskell: a blog post or two, telling me how great all the new ways are because of the type system.
I know I'm sounding very contrarian, but it really is a frustration I have with the language. I've heard several times that once you manage to use it a lot you find these unambiguous universal methods. I just feel like getting there first requires digesting all of these blog posts.
The thing you have to keep in mind is that this kind of naked mutation is probably the main source of bugs in programming today. One of the main advantages of OO was that it demarcated which functions could modify a "global" variable. But if I get a weird value in one of my fields, I still can't trivially tell how it got there, I can only narrow down to methods of the class (and possibly the inheritance tree, depending on variable visibility).
Due to that, there is more ceremony in modifying things in Haskell. The language works best if you write most of your code in a way that doesn't mutate anything and then limit mutation to a small area using the advanced techniques developed in the language. But doing all this requires a pretty substantial investment so you probably need something to convince you that the end will be worth it before you start. I don't know what you tell you, what got me interested was something like:
> fibs = 1 : 1 : zipWith (+) fibs (tail fibs)
and
> max = head . sort
but I understand that's not going to motivate most people to completely change how they approach programming as a discipline.
Prelude> let x = [1, 2, 3]
Prelude> x
[1,2,3]
Prelude> x // [(2,42)]
<interactive>:5:3:
Not in scope: `//'
Perhaps you meant one of these:
`/' (imported from Prelude), `/=' (imported from Prelude)
The prelude isn't everything in Haskell. Just like you need to import sys or do import re in python to get at things less used here too you have to do the same.
λ :m Data.Array
λ let x = array (1,3) [(1,1), (2,2), (3,3)]
x :: (Num e, Num i, Ix i) => Array i e
λ x
array (1,3) [(1,1),(2,2),(3,3)]
it :: (Ix i, Num i, Num e) => Array i e
λ x // [(2,42)]
array (1,3) [(1,1),(2,42),(3,3)]
it :: (Num i, Num e, Ix i) => Array i e
λ x
array (1,3) [(1,1),(2,2),(3,3)]
it :: (Ix i, Num i, Num e) => Array i e
Note however that this isn't mutating x directly, to do mutation would require state or a monad.
I understand the source of your question -- not all languages
provide arrays in the included-by-default namespace. Python for example requires you to import an array module. These are part of the standard library in both cases.
This makes it a little harder to get started but considering the kinds of things programmers put up with on a daily basis is extremely mild.
In many languages: arr[idx] = nevalue
In Haskell: a blog post or two, telling me how great all the new ways are because of the type system.
I know I'm sounding very contrarian, but it really is a frustration I have with the language. I've heard several times that once you manage to use it a lot you find these unambiguous universal methods. I just feel like getting there first requires digesting all of these blog posts.