Skip to content

Commit 79b94ed

Browse files
committed
rename all new instances following a upper-case naming convention
1 parent b8a11fa commit 79b94ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+1826
-1827
lines changed

CHANGELOG.md

+188-186
Large diffs are not rendered by default.

docs/modules/Array.ts.md

+105-105
Original file line numberDiff line numberDiff line change
@@ -107,29 +107,29 @@ Added in v2.0.0
107107
- [guards](#guards)
108108
- [isNonEmpty](#isnonempty)
109109
- [instances](#instances)
110+
- [Alt](#alt-1)
111+
- [Alternative](#alternative-1)
112+
- [Applicative](#applicative)
113+
- [Compactable](#compactable-1)
114+
- [Extend](#extend-1)
115+
- [Filterable](#filterable-1)
116+
- [FilterableWithIndex](#filterablewithindex-1)
117+
- [Foldable](#foldable-1)
118+
- [FoldableWithIndex](#foldablewithindex-1)
119+
- [Functor](#functor-1)
120+
- [FunctorWithIndex](#functorwithindex-1)
121+
- [Monad](#monad-1)
122+
- [Traversable](#traversable-1)
123+
- [TraversableWithIndex](#traversablewithindex-1)
110124
- [URI](#uri)
111125
- [URI (type alias)](#uri-type-alias)
112-
- [altArray](#altarray)
113-
- [alternativeArray](#alternativearray)
114-
- [applicativeArray](#applicativearray)
126+
- [Unfoldable](#unfoldable-1)
127+
- [Witherable](#witherable)
115128
- [array](#array)
116-
- [compactableArray](#compactablearray)
117-
- [extendArray](#extendarray)
118-
- [filterableArray](#filterablearray)
119-
- [filterableWithIndexArray](#filterablewithindexarray)
120-
- [foldableArray](#foldablearray)
121-
- [foldableWithIndexArray](#foldablewithindexarray)
122-
- [functorArray](#functorarray)
123-
- [functorWithIndexArray](#functorwithindexarray)
124129
- [getEq](#geteq)
125130
- [getMonoid](#getmonoid)
126131
- [getOrd](#getord)
127132
- [getShow](#getshow)
128-
- [monadArray](#monadarray)
129-
- [traversableArray](#traversablearray)
130-
- [traversableWithIndexArray](#traversablewithindexarray)
131-
- [unfoldableArray](#unfoldablearray)
132-
- [witherableArray](#witherablearray)
133133
- [unsafe](#unsafe)
134134
- [unsafeDeleteAt](#unsafedeleteat)
135135
- [unsafeInsertAt](#unsafeinsertat)
@@ -1449,154 +1449,204 @@ Added in v2.0.0
14491449

14501450
# instances
14511451

1452-
## URI
1452+
## Alt
14531453

14541454
**Signature**
14551455

14561456
```ts
1457-
export declare const URI: 'Array'
1457+
export declare const Alt: Alt1<'Array'>
14581458
```
14591459

1460-
Added in v2.0.0
1460+
Added in v2.7.0
14611461

1462-
## URI (type alias)
1462+
## Alternative
14631463

14641464
**Signature**
14651465

14661466
```ts
1467-
export type URI = typeof URI
1467+
export declare const Alternative: Alternative1<'Array'>
14681468
```
14691469

1470-
Added in v2.0.0
1470+
Added in v2.7.0
14711471

1472-
## altArray
1472+
## Applicative
14731473

14741474
**Signature**
14751475

14761476
```ts
1477-
export declare const altArray: Alt1<'Array'>
1477+
export declare const Applicative: Applicative1<'Array'>
14781478
```
14791479

14801480
Added in v2.7.0
14811481

1482-
## alternativeArray
1482+
## Compactable
14831483

14841484
**Signature**
14851485

14861486
```ts
1487-
export declare const alternativeArray: Alternative1<'Array'>
1487+
export declare const Compactable: Compactable1<'Array'>
14881488
```
14891489

14901490
Added in v2.7.0
14911491

1492-
## applicativeArray
1492+
## Extend
14931493

14941494
**Signature**
14951495

14961496
```ts
1497-
export declare const applicativeArray: Applicative1<'Array'>
1497+
export declare const Extend: Extend1<'Array'>
14981498
```
14991499

15001500
Added in v2.7.0
15011501

1502-
## array
1502+
## Filterable
15031503

15041504
**Signature**
15051505

15061506
```ts
1507-
export declare const array: FunctorWithIndex1<'Array', number> &
1508-
Monad1<'Array'> &
1509-
Unfoldable1<'Array'> &
1510-
Alternative1<'Array'> &
1511-
Extend1<'Array'> &
1512-
FilterableWithIndex1<'Array', number> &
1513-
FoldableWithIndex1<'Array', number> &
1514-
TraversableWithIndex1<'Array', number> &
1515-
Witherable1<'Array'>
1507+
export declare const Filterable: Filterable1<'Array'>
15161508
```
15171509

1518-
Added in v2.0.0
1510+
Added in v2.7.0
15191511

1520-
## compactableArray
1512+
## FilterableWithIndex
15211513

15221514
**Signature**
15231515

15241516
```ts
1525-
export declare const compactableArray: Compactable1<'Array'>
1517+
export declare const FilterableWithIndex: FilterableWithIndex1<'Array', number>
15261518
```
15271519

15281520
Added in v2.7.0
15291521

1530-
## extendArray
1522+
## Foldable
15311523

15321524
**Signature**
15331525

15341526
```ts
1535-
export declare const extendArray: Extend1<'Array'>
1527+
export declare const Foldable: Foldable1<'Array'>
15361528
```
15371529

15381530
Added in v2.7.0
15391531

1540-
## filterableArray
1532+
## FoldableWithIndex
15411533

15421534
**Signature**
15431535

15441536
```ts
1545-
export declare const filterableArray: Filterable1<'Array'>
1537+
export declare const FoldableWithIndex: FoldableWithIndex1<'Array', number>
15461538
```
15471539

15481540
Added in v2.7.0
15491541

1550-
## filterableWithIndexArray
1542+
## Functor
15511543

15521544
**Signature**
15531545

15541546
```ts
1555-
export declare const filterableWithIndexArray: FilterableWithIndex1<'Array', number>
1547+
export declare const Functor: Functor1<'Array'>
15561548
```
15571549

15581550
Added in v2.7.0
15591551

1560-
## foldableArray
1552+
## FunctorWithIndex
15611553

15621554
**Signature**
15631555

15641556
```ts
1565-
export declare const foldableArray: Foldable1<'Array'>
1557+
export declare const FunctorWithIndex: FunctorWithIndex1<'Array', number>
15661558
```
15671559

15681560
Added in v2.7.0
15691561

1570-
## foldableWithIndexArray
1562+
## Monad
15711563

15721564
**Signature**
15731565

15741566
```ts
1575-
export declare const foldableWithIndexArray: FoldableWithIndex1<'Array', number>
1567+
export declare const Monad: Monad1<'Array'>
15761568
```
15771569

15781570
Added in v2.7.0
15791571

1580-
## functorArray
1572+
## Traversable
15811573

15821574
**Signature**
15831575

15841576
```ts
1585-
export declare const functorArray: Functor1<'Array'>
1577+
export declare const Traversable: Traversable1<'Array'>
15861578
```
15871579

15881580
Added in v2.7.0
15891581

1590-
## functorWithIndexArray
1582+
## TraversableWithIndex
15911583

15921584
**Signature**
15931585

15941586
```ts
1595-
export declare const functorWithIndexArray: FunctorWithIndex1<'Array', number>
1587+
export declare const TraversableWithIndex: TraversableWithIndex1<'Array', number>
15961588
```
15971589

15981590
Added in v2.7.0
15991591

1592+
## URI
1593+
1594+
**Signature**
1595+
1596+
```ts
1597+
export declare const URI: 'Array'
1598+
```
1599+
1600+
Added in v2.0.0
1601+
1602+
## URI (type alias)
1603+
1604+
**Signature**
1605+
1606+
```ts
1607+
export type URI = typeof URI
1608+
```
1609+
1610+
Added in v2.0.0
1611+
1612+
## Unfoldable
1613+
1614+
**Signature**
1615+
1616+
```ts
1617+
export declare const Unfoldable: Unfoldable1<'Array'>
1618+
```
1619+
1620+
Added in v2.7.0
1621+
1622+
## Witherable
1623+
1624+
**Signature**
1625+
1626+
```ts
1627+
export declare const Witherable: Witherable1<'Array'>
1628+
```
1629+
1630+
Added in v2.7.0
1631+
1632+
## array
1633+
1634+
**Signature**
1635+
1636+
```ts
1637+
export declare const array: FunctorWithIndex1<'Array', number> &
1638+
Monad1<'Array'> &
1639+
Unfoldable1<'Array'> &
1640+
Alternative1<'Array'> &
1641+
Extend1<'Array'> &
1642+
FilterableWithIndex1<'Array', number> &
1643+
FoldableWithIndex1<'Array', number> &
1644+
TraversableWithIndex1<'Array', number> &
1645+
Witherable1<'Array'>
1646+
```
1647+
1648+
Added in v2.0.0
1649+
16001650
## getEq
16011651

16021652
Derives an `Eq` over the `Array` of a given element type from the `Eq` of that type. The derived `Eq` defines two
@@ -1680,56 +1730,6 @@ export declare const getShow: <A>(S: Show<A>) => Show<A[]>
16801730

16811731
Added in v2.0.0
16821732

1683-
## monadArray
1684-
1685-
**Signature**
1686-
1687-
```ts
1688-
export declare const monadArray: Monad1<'Array'>
1689-
```
1690-
1691-
Added in v2.7.0
1692-
1693-
## traversableArray
1694-
1695-
**Signature**
1696-
1697-
```ts
1698-
export declare const traversableArray: Traversable1<'Array'>
1699-
```
1700-
1701-
Added in v2.7.0
1702-
1703-
## traversableWithIndexArray
1704-
1705-
**Signature**
1706-
1707-
```ts
1708-
export declare const traversableWithIndexArray: TraversableWithIndex1<'Array', number>
1709-
```
1710-
1711-
Added in v2.7.0
1712-
1713-
## unfoldableArray
1714-
1715-
**Signature**
1716-
1717-
```ts
1718-
export declare const unfoldableArray: Unfoldable1<'Array'>
1719-
```
1720-
1721-
Added in v2.7.0
1722-
1723-
## witherableArray
1724-
1725-
**Signature**
1726-
1727-
```ts
1728-
export declare const witherableArray: Witherable1<'Array'>
1729-
```
1730-
1731-
Added in v2.7.0
1732-
17331733
# unsafe
17341734

17351735
## unsafeDeleteAt

0 commit comments

Comments
 (0)