You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: Let's say I search for repeat. One of the results might be repeat : Int -> a -> Array a. A common next step would be looking up what that Array type is, and how to construct one. However, searching on Array or Array a does not give any results.
I'd expect an entry for the type, mirroring its entry on elm packages like
type Array a
Representation of fast immutable arrays. You can create arrays of integers (Array Int) or strings (Array String) or any other type of value you can dream up.
The text was updated successfully, but these errors were encountered:
Example: Let's say I search for
repeat
. One of the results might berepeat : Int -> a -> Array a
. A common next step would be looking up what that Array type is, and how to construct one. However, searching onArray
orArray a
does not give any results.I'd expect an entry for the type, mirroring its entry on elm packages like
The text was updated successfully, but these errors were encountered: