Idris2/libs/prelude/Prelude
Stiopa Koltsov 1cf9de4021 Hide countFrom function from prelude
`countFrom` must have been made public accidentally:
* it is defined in the ranges section of the file, not stream section
* it is used only in `Range` implementation
* the same function `iterate` is defined in `Data.Stream`

```
countFrom start next
```

is the same as

```
iterate next start
```
2021-02-16 19:20:54 +00:00
..
Basics.idr The blackbird operator (in the variant of .:) was added 2021-01-27 15:08:25 +00:00
Cast.idr Move Cast interface to Prelude.Cast 2021-01-27 18:31:43 +00:00
EqOrd.idr removed trailing whitespace (#955) 2021-01-21 11:33:03 +00:00
Interfaces.idr Add named instances for functor & applicative composition 2021-02-10 18:00:14 +00:00
IO.idr Overhaul of concurrency primitives (#968) 2021-02-05 16:16:20 +00:00
Num.idr Reorganise prelude into multiple files 2020-07-12 16:55:48 +01:00
Ops.idr [ new ] Data.OpenUnion (#1050) 2021-02-10 15:25:35 +00:00
Show.idr Relax linearities in prelude 2020-12-29 21:32:01 +00:00
Types.idr Hide countFrom function from prelude 2021-02-16 19:20:54 +00:00
Uninhabited.idr removed trailing whitespace (#955) 2021-01-21 11:33:03 +00:00