We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4fe2736 + f29e7b3 commit cba046dCopy full SHA for cba046d
README.md
@@ -29,6 +29,8 @@
29
30
(!!) :: forall a. [a] -> Number -> Maybe a
31
32
+ (..) :: Number -> Number -> [Number]
33
+
34
(\\) :: forall a. (Eq a) => [a] -> [a] -> [a]
35
36
append :: forall a. [a] -> [a] -> [a]
src/Data/Array.purs
@@ -1,5 +1,6 @@
1
module Data.Array
2
( (!!)
3
+ , (..)
4
, snoc
5
, singleton
6
, head
@@ -287,6 +288,9 @@ foreign import range
287
288
\ };\
289
\}" :: Number -> Number -> [Number]
290
291
+(..) :: Number -> Number -> [Number]
292
+(..) = range
293
294
foreign import zipWith
295
"function zipWith (f) {\
296
\ return function (xs) {\
0 commit comments