slist icon indicating copy to clipboard operation
slist copied to clipboard

♾️ Sized list

Results 8 slist issues
Sort by recently updated
recently updated
newest added

``` Error: setup: Encountered missing or private dependencies: base >=4.10.1.0 &&

For type class instances laws checks.

tests
Hacktoberfest

Because of how ordinary lists are implemented in Haskell, left-associative appending of such lists is very slow. The following takes much more time than it should: ```haskell ((((l1 ++ l2)...

enhancement
idea

benchmarks
Hacktoberfest

Create another data structure similar to `NonEmpty` implemented through the ordinary list. Something like this: ```haskell data SNonEmpty a = a :| Slist a ```

idea

This is more of a comment for something to keep in mind in future work, rather than an issue about something that exists now in the code. I mention it...

enhancement

Explore the way how to make it more efficient

question