Skip to content

Commit d4f1fcf

Browse files
committed
Regenerate docs
1 parent 0a0ed31 commit d4f1fcf

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

docs/Data.Array.md renamed to docs/Data/Array.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ Create an array containing a range of integers, including both endpoints.
2828
(..) :: Int -> Int -> Array Int
2929
```
3030

31+
_non-associative / precedence 8_
32+
3133
An infix synonym for `range`.
3234

3335
#### `replicate`
@@ -95,6 +97,8 @@ cons :: forall a. a -> Array a -> Array a
9597
(:) :: forall a. a -> Array a -> Array a
9698
```
9799

100+
_right-associative / precedence 6_
101+
98102
An infix alias for `cons`.
99103

100104
Note, the running time of this function is `O(n)`.
@@ -180,6 +184,8 @@ index :: forall a. Array a -> Int -> Maybe a
180184
(!!) :: forall a. Array a -> Int -> Maybe a
181185
```
182186

187+
_left-associative / precedence 8_
188+
183189
An infix version of `index`.
184190

185191
#### `elemIndex`
@@ -487,6 +493,8 @@ new array.
487493
(\\) :: forall a. (Eq a) => Array a -> Array a -> Array a
488494
```
489495

496+
_non-associative / precedence 5_
497+
490498
Delete the first occurrence of each element in the second array from the
491499
first array, creating a new array.
492500

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)