Idris2/libs/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
..
Prelude Hide countFrom function from prelude 2021-02-16 19:20:54 +00:00
Builtin.idr Remove linearity subtyping 2020-12-27 19:58:35 +00:00
Makefile Refactor makefiles 2020-05-19 18:50:47 +06:00
Prelude.idr Move Cast interface to Prelude.Cast 2021-01-27 18:31:43 +00:00
prelude.ipkg Move Cast interface to Prelude.Cast 2021-01-27 18:31:43 +00:00
PrimIO.idr Remove linearity subtyping 2020-12-27 19:58:35 +00:00